summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2016-07-23 00:12:11 +0200
committerNikita Popov <nikic@php.net>2016-07-23 00:12:11 +0200
commitf4d1af7981a4173b25e9ef84fcc550b8b0df72c0 (patch)
tree94366b15d058bf5686e8d04c71a8e8796920580b
parent07af6ba898e8fb6402643f12ccb769c5466698ad (diff)
downloadphp-git-f4d1af7981a4173b25e9ef84fcc550b8b0df72c0.tar.gz
Fix build
Missed this occurrence...
-rw-r--r--Zend/zend_compile.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index ec95fd0d9c..fc77c6ad2f 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -584,7 +584,9 @@ static int zend_add_const_name_literal(zend_op_array *op_array, zend_string *nam
void zend_stop_lexing(void)
{
- if(LANG_SCNG(on_event)) LANG_SCNG(on_event)(ON_STOP, END, 0);
+ if (LANG_SCNG(on_event)) {
+ LANG_SCNG(on_event)(ON_STOP, END, 0, LANG_SCNG(on_event_context));
+ }
LANG_SCNG(yy_cursor) = LANG_SCNG(yy_limit);
}