From: Derick Rethans Date: Thu, 31 Dec 2015 09:46:43 +0000 (+0000) Subject: MFH: Fix lineno for finally FAST_CALL and JMP X-Git-Tag: php-7.0.3RC1~92 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5362f0ad7f6f1b0fe2dcee356a24bcd054c204f0;p=php MFH: Fix lineno for finally FAST_CALL and JMP --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index d3e17d0ec4..45f5b7eafb 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -4184,6 +4184,8 @@ void zend_compile_try(zend_ast *ast) /* {{{ */ /* Pop FAST_CALL from unwind stack */ zend_stack_del_top(&CG(loop_var_stack)); + CG(zend_lineno) = finally_ast->lineno; + opline = zend_emit_op(NULL, ZEND_FAST_CALL, NULL, NULL); opline->op1.num = try_catch_offset; opline->result_type = IS_TMP_VAR;