]> granicus.if.org Git - php/commitdiff
fix initializer struct
authorAnatol Belski <ab@php.net>
Mon, 15 Sep 2014 09:28:24 +0000 (11:28 +0200)
committerAnatol Belski <ab@php.net>
Mon, 15 Sep 2014 09:30:26 +0000 (11:30 +0200)
Zend/zend_execute_API.c

index 7842ecfb9189fdd286b36c5df347ccf6d57a621b..09519d70838b2f3d10e4423d24a3852efa630d33 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}}, {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