mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
7aacc705d0
Closes GH-5958
24 lines
400 B
PHP
24 lines
400 B
PHP
--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";
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Undefined variable $i in %s on line %d
|
|
made it once
|
|
|
|
Warning: Undefined variable $i in %s on line %d
|
|
ok
|