summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg_prompt.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2016-03-02 16:57:08 +0300
committerDmitry Stogov <dmitry@zend.com>2016-03-02 16:57:08 +0300
commit960b3755b3ca97f3ea2f98f65f1ac88f24d320ac (patch)
treeb212de5443b19c615ff39aa9a2cfa95a0010d441 /sapi/phpdbg/phpdbg_prompt.c
parent701edb8c82439ed5986be0718a5246cd37452f96 (diff)
parent908b662f7fcfbc032f70ece82c25fdc8d21de4b3 (diff)
downloadphp-git-960b3755b3ca97f3ea2f98f65f1ac88f24d320ac.tar.gz
Merge branch 'PHP-7.0'
* PHP-7.0: PHP-7 zend_call_function() doesn't support symbol_table substitution
Diffstat (limited to 'sapi/phpdbg/phpdbg_prompt.c')
-rw-r--r--sapi/phpdbg/phpdbg_prompt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_prompt.c b/sapi/phpdbg/phpdbg_prompt.c
index edfdba688e..5b3b546466 100644
--- a/sapi/phpdbg/phpdbg_prompt.c
+++ b/sapi/phpdbg/phpdbg_prompt.c
@@ -121,7 +121,8 @@ static inline int phpdbg_call_register(phpdbg_param_t *stack) /* {{{ */
ZVAL_STRINGL(&fci.function_name, lc_name, name->len);
fci.size = sizeof(zend_fcall_info);
fci.function_table = &PHPDBG_G(registered);
- fci.symbol_table = zend_rebuild_symbol_table();
+ //???fci.symbol_table = zend_rebuild_symbol_table();
+ fci.symbol_table = NULL;
fci.object = NULL;
fci.retval = &fretval;
fci.no_separation = 1;