diff options
author | Dmitry Stogov <dmitry@zend.com> | 2016-03-02 17:50:55 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2016-03-02 17:50:55 +0300 |
commit | c67c166f930b2f815a805a3376e9244794e20c31 (patch) | |
tree | 6ec75a15e3dd9c7e9cdb0e1ba06ffb038726a0b9 /Zend/zend_exceptions.c | |
parent | 960b3755b3ca97f3ea2f98f65f1ac88f24d320ac (diff) | |
download | php-git-c67c166f930b2f815a805a3376e9244794e20c31.tar.gz |
Removed zend_fcall_info.symbol_table
Diffstat (limited to 'Zend/zend_exceptions.c')
-rw-r--r-- | Zend/zend_exceptions.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index 6195ef904a..21dfdc5146 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -676,7 +676,6 @@ ZEND_METHOD(exception, __toString) fci.size = sizeof(fci); fci.function_table = &Z_OBJCE_P(exception)->function_table; ZVAL_COPY_VALUE(&fci.function_name, &fname); - fci.symbol_table = NULL; fci.object = Z_OBJ_P(exception); fci.retval = &trace; fci.param_count = 0; |