php-src/ext/spl/tests/bug67538.phpt
2014-07-24 22:53:46 -07:00

18 lines
267 B
PHP

--TEST--
Bug #67538 (SPL Iterators use-after-free)
--FILE--
<?php
$list = new SplDoublyLinkedList();
$list->push('a');
$list->push('b');
$list->rewind();
$list->offsetUnset(0);
$list->push('b');
$list->offsetUnset(0);
$list->next();
echo "okey";
?>
--EXPECTF--
okey