1 2 3 4 5 6 7 8 9 10 11 12 13 14
--TEST-- Bug #69227 (Use after free in zval_scan caused by spl_object_storage_get_gc) --INI-- zend.enable_gc=1 --FILE-- <?php $s = new SplObjectStorage(); $s->attach($s); gc_collect_cycles(); echo "ok"; ?> --EXPECT-- ok