From: Anatol Belski Date: Mon, 15 Sep 2014 09:28:24 +0000 (+0200) Subject: fix initializer struct X-Git-Tag: PRE_NATIVE_TLS_MERGE~158^2~85^2~28^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f595ed4b8c1a6e5b95df6e2ad444816186878995;p=php fix initializer struct --- diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 7842ecfb91..09519d7083 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}}, {0}}, NULL, NULL, 0, NULL, NULL, 0 }; +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_cache empty_fcall_info_cache = { 0, NULL, NULL, NULL, NULL }; #ifdef ZEND_WIN32