]> granicus.if.org Git - php/commitdiff
fix initializer for empty_fcall_info
authorAnatol Belski <ab@php.net>
Fri, 4 Mar 2016 09:57:38 +0000 (10:57 +0100)
committerAnatol Belski <ab@php.net>
Fri, 4 Mar 2016 09:57:38 +0000 (10:57 +0100)
Zend/zend_execute_API.c

index bbf25863c9903c0469c07dcda7ac5bc30aced2fc..a66674a33c48edbb17e5a674f6a987c8f7707a80 100644 (file)
@@ -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