]> granicus.if.org Git - php/commitdiff
Fixed initializing
authorXinchen Hui <laruence@php.net>
Fri, 15 Aug 2014 05:52:52 +0000 (13:52 +0800)
committerXinchen Hui <laruence@php.net>
Fri, 15 Aug 2014 05:52:52 +0000 (13:52 +0800)
Zend/zend_execute_API.c

index 9e9bd841a032805688a0c45a45514a06a015b60e..8af877215c1b0a80d2d7482dee5383bdb43aac9f 100644 (file)
@@ -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