summaryrefslogtreecommitdiff
path: root/Zend/tests/bug70785.phpt
blob: 3c427ba069f9fba4694386c543057a8e01d9fb2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--TEST--
Bug #70785 (Infinite loop due to exception during identical comparison)
--FILE--
<?php

set_error_handler(function($no, $msg) {
	throw new Exception($msg);
});

try {
	if ($a === null) { // ZEND_VM_SMART_BRANCH  
		undefined_function('Null');
	}
} catch (Exception $e) {
}

try  {
	$c === 3; // ZEND_VM_NEXT_OPCODE
	undefined_function();
} catch (Exception $e) {
}
?>
okey
--EXPECT--
okey