diff options
author | Dmitry Stogov <dmitry@zend.com> | 2016-09-26 16:16:07 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2016-09-26 16:16:07 +0300 |
commit | 6be2e79c2c869a7bf6031164ff3260d53d801c76 (patch) | |
tree | f9d7c73861a479b93f29a7503c4467816912c480 | |
parent | bca7f029335941e8cb79e793a9143c3f546a7a87 (diff) | |
download | php-git-6be2e79c2c869a7bf6031164ff3260d53d801c76.tar.gz |
On PHP-7.1 and above we have to check CALL_INFO instead of symbol_table.
-rw-r--r-- | Zend/zend_builtin_functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index 1c20011f12..0fb0036b7f 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -2295,7 +2295,7 @@ static void debug_backtrace_get_args(zend_execute_data *call, zval *arg_array) / if (call->func->type == ZEND_USER_FUNCTION) { uint32_t first_extra_arg = MIN(num_args, call->func->op_array.num_args); - if (UNEXPECTED(call->symbol_table)) { + if (UNEXPECTED(ZEND_CALL_INFO(call) & ZEND_CALL_HAS_SYMBOL_TABLE)) { /* In case of attached symbol_table, values on stack may be invalid * and we have to access them through symbol_table * See: https://bugs.php.net/bug.php?id=73156 |