php-src/Zend/tests/bug44184.phpt

22 lines
312 B
Plaintext
Raw Normal View History

--TEST--
Bug #44184 (Double free of loop-variable on exception)
--FILE--
<?php
function foo() {
2020-02-03 21:52:20 +00:00
$x = array(1,2,3);
foreach ($x as $a) {
while (1) {
throw new Exception();
}
return;
}
}
try {
2020-02-03 21:52:20 +00:00
foo();
} catch (Exception $ex) {
2020-02-03 21:52:20 +00:00
echo "ok\n";
}
?>
--EXPECT--
ok