From 625e06f454d656fb10c7e0e67682956efdebbd56 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Mon, 7 Feb 2005 16:44:00 +0000 Subject: [PATCH] Fixed FE_RESET/FE_FETCH bug. Now FE_RESET instruction takes jump-address from itself, not from the following FE_FETCH instruction. --- Zend/zend_compile.c | 1 + 1 file changed, 1 insertion(+) 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); -- 2.40.0