From: Xinchen Hui Date: Fri, 15 Aug 2014 05:52:52 +0000 (+0800) Subject: Fixed initializing X-Git-Tag: PRE_64BIT_BRANCH_MERGE~63 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d7f12b9b9c2312ad8ba7edfd6544b64d7de2aaec;p=php Fixed initializing --- diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 9e9bd841a0..8af877215c 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -42,7 +42,7 @@ ZEND_API void (*zend_execute_ex)(zend_execute_data *execute_data TSRMLS_DC); ZEND_API void (*zend_execute_internal)(zend_execute_data *execute_data, zval *return_value TSRMLS_DC); /* true globals */ -ZEND_API const zend_fcall_info empty_fcall_info = { 0, NULL, {{0},0}, NULL, NULL, 0, NULL, NULL, 0 }; +ZEND_API const zend_fcall_info empty_fcall_info = { 0, NULL, {{0}, {{0}}, {0}}, NULL, NULL, 0, NULL, NULL, 0 }; ZEND_API const zend_fcall_info_cache empty_fcall_info_cache = { 0, NULL, NULL, NULL, NULL }; #ifdef ZEND_WIN32