mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
25 lines
361 B
PHP
25 lines
361 B
PHP
--TEST--
|
|
SPL: DoublyLinkedList: memory leak when iterator pointer isn't at the last element
|
|
--FILE--
|
|
<?php
|
|
$dll = new SplDoublyLinkedList();
|
|
$dll->push(1);
|
|
$dll->push(2);
|
|
$dll->push(3);
|
|
$dll->push(4);
|
|
|
|
|
|
$dll->rewind();
|
|
echo $dll->current()."\n";
|
|
$dll->next();
|
|
$dll->next();
|
|
echo $dll->current()."\n";
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECTF--
|
|
1
|
|
3
|
|
===DONE===
|