|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2013-08-04 20:14 UTC] bugs dot php dot net at ss dot chernousov dot net
Description: ------------ GC fails to resolve the circular reference if object A retains a reference to a callback in object B and object B retains a reference to object A. Both objects leak. Native PHP stuff like SPL iterators with callbacks and Stream callbacks are also vulnerable to this problem. This does not apply to userland PHP objects (i.e. objects of classes that were defined in PHP scripts by a user). I provided a test script with a number of tests, including SPL iterators with callbacks, Stream callbacks, as well as 3rd-party extensions like pecl-event, pecl-ev, pecl-libevent, pecl-eio. Test script: --------------- https://gist.github.com/5lava/53aa2e53c7f8c658f045 Expected result: ---------------- ==== NULL ==== ==== GC ==== Obj::__destruct ==== THE END ==== or ==== NULL ==== Obj::__destruct ==== GC ==== ==== THE END ==== Actual result: -------------- ==== NULL ==== ==== GC ==== ==== THE END ==== Obj::__destruct PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 12:00:02 2025 UTC |
Thanks, @nikic, I appreciate your attention to this problem. In the meantime, correction my previous comment, test 8 should read as follows (replaced $db with $obj->a): // TEST 8: PDO/sqlite callback $obj->a = new PDO('sqlite::memory:'); $obj->a->sqliteCreateFunction('md5rev', static function() use ($obj) {}, 1);