1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 11:42:17 +02:00

Since we have fci_cache = &fci_cache_local inside that block

and fci_cache is then later used outside the block, fci_cache_local
can't be block-scoped here
This commit is contained in:
Rasmus Lerdorf
2011-08-07 00:50:46 +00:00
parent b7a92c9709
commit 80931fee0c

View File

@@ -763,6 +763,7 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TS
zend_class_entry *called_scope = NULL;
zval *current_this;
zend_execute_data execute_data;
zend_fcall_info_cache fci_cache_local;
*fci->retval_ptr_ptr = NULL;
@@ -797,7 +798,6 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TS
}
if (!fci_cache || !fci_cache->initialized) {
zend_fcall_info_cache fci_cache_local;
char *callable_name;
char *error = NULL;