From 5362f0ad7f6f1b0fe2dcee356a24bcd054c204f0 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Thu, 31 Dec 2015 09:46:43 +0000 Subject: [PATCH] MFH: Fix lineno for finally FAST_CALL and JMP --- Zend/zend_compile.c | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.40.0