2015-04-09 02:20:35 +08:00
|
|
|
--TEST--
|
|
|
|
Bug #67314 (Segmentation fault in gc_remove_zval_from_buffer)
|
|
|
|
--FILE--
|
|
|
|
<?php
|
|
|
|
function crash()
|
|
|
|
{
|
|
|
|
$notDefined[$i] = 'test';
|
|
|
|
}
|
|
|
|
|
|
|
|
function error_handler() { return false; }
|
|
|
|
|
|
|
|
set_error_handler('error_handler');
|
|
|
|
crash();
|
|
|
|
echo "made it once\n";
|
|
|
|
crash();
|
|
|
|
echo "ok\n";
|
2020-08-09 17:06:57 +08:00
|
|
|
?>
|
2015-04-09 02:20:35 +08:00
|
|
|
--EXPECTF--
|
2020-03-30 23:23:03 +08:00
|
|
|
Warning: Undefined variable $i in %s on line %d
|
2015-04-09 02:20:35 +08:00
|
|
|
made it once
|
|
|
|
|
2020-03-30 23:23:03 +08:00
|
|
|
Warning: Undefined variable $i in %s on line %d
|
2015-04-09 02:20:35 +08:00
|
|
|
ok
|