php-src/ext/spl/tests/bug69227.phpt
2015-03-14 00:52:53 +08:00

15 lines
221 B
PHP

--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