diff options
| author | Nikita Popov <nikic@php.net> | 2016-07-23 00:12:11 +0200 |
|---|---|---|
| committer | Nikita Popov <nikic@php.net> | 2016-07-23 00:12:11 +0200 |
| commit | f4d1af7981a4173b25e9ef84fcc550b8b0df72c0 (patch) | |
| tree | 94366b15d058bf5686e8d04c71a8e8796920580b | |
| parent | 07af6ba898e8fb6402643f12ccb769c5466698ad (diff) | |
| download | php-git-f4d1af7981a4173b25e9ef84fcc550b8b0df72c0.tar.gz | |
Fix build
Missed this occurrence...
| -rw-r--r-- | Zend/zend_compile.c | 4 |
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); } |
