From: Xinchen Hui Date: Fri, 13 Dec 2013 02:56:35 +0000 (+0800) Subject: Use zend_error_noreturn here X-Git-Tag: php-5.5.8RC1~21^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef73f85079e7563cb82afde35f0e89321257f0d9;p=php Use zend_error_noreturn here --- diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index c47168757d..2dfa9848b6 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -496,7 +496,7 @@ static void zend_check_finally_breakout(zend_op_array *op_array, zend_uint op_nu CG(in_compilation) = 1; CG(active_op_array) = op_array; CG(zend_lineno) = op_array->opcodes[op_num].lineno; - zend_error(E_COMPILE_ERROR, "jump into a finally block is disallowed"); + zend_error_noreturn(E_COMPILE_ERROR, "jump into a finally block is disallowed"); } else if ((op_num >= op_array->try_catch_array[i].finally_op && op_num <= op_array->try_catch_array[i].finally_end) && (dst_num > op_array->try_catch_array[i].finally_end