summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.c
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2018-11-27 16:37:55 +0100
committerNikita Popov <nikita.ppv@gmail.com>2018-11-27 16:37:55 +0100
commitd6595f276fff44aa5d1d2dde7238d540a267d0dd (patch)
treecf53c9829ca1118ecfc441d815eb2b0204275cba /Zend/zend_compile.c
parent9ec519e09499c3f2749e298b097da132f746d4d8 (diff)
downloadphp-git-d6595f276fff44aa5d1d2dde7238d540a267d0dd.tar.gz
Fixed bug #76046
Place FE_FREE on start line of foreach, instead of whatever random line number might be in CG(zend_lineno) at the time.
Diffstat (limited to 'Zend/zend_compile.c')
-rw-r--r--Zend/zend_compile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index f1dd49a223..9c0893b773 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -4807,6 +4807,7 @@ void zend_compile_foreach(zend_ast *ast) /* {{{ */
zend_end_loop(opnum_fetch, &reset_node);
+ CG(zend_lineno) = ast->lineno;
opline = zend_emit_op(NULL, ZEND_FE_FREE, &reset_node, NULL);
}
/* }}} */