php-src/Zend/tests/bug70785.phpt

26 lines
417 B
Plaintext
Raw Normal View History

--TEST--
Bug #70785 (Infinite loop due to exception during identical comparison)
--FILE--
<?php
set_error_handler(function($no, $msg) {
2020-02-03 21:52:20 +00:00
throw new Exception($msg);
});
try {
2020-02-03 21:52:20 +00:00
if ($a === null) { // ZEND_VM_SMART_BRANCH
undefined_function('Null');
}
} catch (Exception $e) {
}
try {
2020-02-03 21:52:20 +00:00
$c === 3; // ZEND_VM_NEXT_OPCODE
undefined_function();
} catch (Exception $e) {
}
?>
okey
--EXPECT--
okey