diff options
author | Dmitry Stogov <dmitry@zend.com> | 2017-12-27 16:02:20 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2017-12-27 16:02:20 +0300 |
commit | ac2fdc56fbe549bb87312f31335a8b976e519fd4 (patch) | |
tree | 66d3af9a030995821f0b757da964410d459cc679 /Zend/zend_execute_API.c | |
parent | d9f5ea691fef7686061e081034bd52c9cc1db444 (diff) | |
download | php-git-ac2fdc56fbe549bb87312f31335a8b976e519fd4.tar.gz |
zend_fcall_info_cache.initialized is removed (zend_fcall_info_cache is initialized if zend_fcall_info_cache.function_handler is set).
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 674354acf7..b651a08606 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -47,7 +47,7 @@ ZEND_API void (*zend_execute_internal)(zend_execute_data *execute_data, zval *re /* true globals */ ZEND_API const zend_fcall_info empty_fcall_info = { 0, {{0}, {{0}}, {0}}, NULL, NULL, NULL, 0, 0 }; -ZEND_API const zend_fcall_info_cache empty_fcall_info_cache = { 0, NULL, NULL, NULL, NULL }; +ZEND_API const zend_fcall_info_cache empty_fcall_info_cache = { NULL, NULL, NULL, NULL }; #ifdef ZEND_WIN32 ZEND_TLS HANDLE tq_timer = NULL; |