Skip to content

Commit b360ba6

Browse files
committed
fix initializer for empty_fcall_info
1 parent 5a0594d commit b360ba6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_execute_API.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ZEND_API void (*zend_execute_ex)(zend_execute_data *execute_data);
4343
ZEND_API void (*zend_execute_internal)(zend_execute_data *execute_data, zval *return_value);
4444

4545
/* true globals */
46-
ZEND_API const zend_fcall_info empty_fcall_info = { 0, NULL, {{0}, {{0}}, {0}}, NULL, NULL, NULL, NULL, 0, 0 };
46+
ZEND_API const zend_fcall_info empty_fcall_info = { 0, NULL, {{0}, {{0}}, {0}}, NULL, NULL, NULL, 0, 0 };
4747
ZEND_API const zend_fcall_info_cache empty_fcall_info_cache = { 0, NULL, NULL, NULL, NULL };
4848

4949
#ifdef ZEND_WIN32

0 commit comments

Comments
 (0)