20 lines
382 B
PHP
20 lines
382 B
PHP
--TEST--
|
|
Memleaks if unserialize return a self-referenced array/object
|
|
--INI--
|
|
report_memleaks=1
|
|
--FILE--
|
|
<?php
|
|
function foo() {
|
|
gc_collect_cycles();
|
|
}
|
|
|
|
$str = 'a:1:{i:0;R:1;}';
|
|
foo(unserialize($str));
|
|
$str = 'a:1:{i:0;r:1;}';
|
|
foo(unserialize($str));
|
|
echo "okey";
|
|
?>
|
|
--EXPECTF--
|
|
Notice: unserialize(): Error at offset %d of %d bytes in %sunserialize_mem_leak.php on line 9
|
|
okey
|