summaryrefslogtreecommitdiff
path: root/Zend/zend_execute_API.c
diff options
context:
space:
mode:
authorXinchen Hui <laruence@php.net>2014-08-15 13:52:52 +0800
committerXinchen Hui <laruence@php.net>2014-08-15 13:52:52 +0800
commitd7f12b9b9c2312ad8ba7edfd6544b64d7de2aaec (patch)
tree9fc7f8597b7fb6680ad80f1daa734ba8d83073c0 /Zend/zend_execute_API.c
parent27c2fa691b3af6086cef4b57f5af7a459226f90f (diff)
downloadphp-git-d7f12b9b9c2312ad8ba7edfd6544b64d7de2aaec.tar.gz
Fixed initializing
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r--Zend/zend_execute_API.c2
1 files changed, 1 insertions, 1 deletions
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