From: Anatol Belski Date: Fri, 4 Mar 2016 09:57:38 +0000 (+0100) Subject: fix initializer for empty_fcall_info X-Git-Tag: php-7.1.0alpha1~527 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b360ba651dbad43582436f9479fb8d5a6f310b81;p=php fix initializer for empty_fcall_info --- diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index bbf25863c9..a66674a33c 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -43,7 +43,7 @@ ZEND_API void (*zend_execute_ex)(zend_execute_data *execute_data); ZEND_API void (*zend_execute_internal)(zend_execute_data *execute_data, zval *return_value); /* true globals */ -ZEND_API const zend_fcall_info empty_fcall_info = { 0, NULL, {{0}, {{0}}, {0}}, NULL, NULL, NULL, NULL, 0, 0 }; +ZEND_API const zend_fcall_info empty_fcall_info = { 0, NULL, {{0}, {{0}}, {0}}, NULL, NULL, NULL, 0, 0 }; ZEND_API const zend_fcall_info_cache empty_fcall_info_cache = { 0, NULL, NULL, NULL, NULL }; #ifdef ZEND_WIN32