From: Dmitry Stogov Date: Mon, 7 Feb 2005 16:44:00 +0000 (+0000) Subject: Fixed FE_RESET/FE_FETCH bug. X-Git-Tag: RELEASE_0_2~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=625e06f454d656fb10c7e0e67682956efdebbd56;p=php Fixed FE_RESET/FE_FETCH bug. Now FE_RESET instruction takes jump-address from itself, not from the following FE_FETCH instruction. --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index ca4171e8b8..1b9bfe2bee 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -3478,6 +3478,7 @@ void zend_do_foreach_end(znode *foreach_token TSRMLS_DC) SET_UNUSED(opline->op2); CG(active_op_array)->opcodes[foreach_token->u.opline_num].op2.u.opline_num = get_next_op_number(CG(active_op_array)); + CG(active_op_array)->opcodes[foreach_token->u.opline_num-1].op2.u.opline_num = get_next_op_number(CG(active_op_array)); /* FE_RESET */ do_end_loop(foreach_token->u.opline_num TSRMLS_CC);