summaryrefslogtreecommitdiff
path: root/Zend/zend_execute_API.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2004-03-14 18:00:40 +0000
committerAndi Gutmans <andi@php.net>2004-03-14 18:00:40 +0000
commit1aedb9615adb926f8ca38b11efccbce238aa7225 (patch)
tree8a9c5799badac9deb0a37b9125830fc4a7f0ca5b /Zend/zend_execute_API.c
parent4ed1b9a1936a48088c6757b028c7270d8533f957 (diff)
downloadphp-git-1aedb9615adb926f8ca38b11efccbce238aa7225.tar.gz
- Fix windows build
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r--Zend/zend_execute_API.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c
index ed72fa202b..c2ea664636 100644
--- a/Zend/zend_execute_API.c
+++ b/Zend/zend_execute_API.c
@@ -615,9 +615,10 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TS
found = (*ce != NULL?SUCCESS:FAILURE);
fci->object_pp = EG(This)?&EG(This):NULL;
} else {
+ zend_class_entry *scope;
int in_autoload = EG(in_autoload);
EG(in_autoload) = 0;
- zend_class_entry *scope = EG(active_op_array)->scope;
+ scope = EG(active_op_array)->scope;
found = zend_lookup_class(Z_STRVAL_PP(fci->object_pp), Z_STRLEN_PP(fci->object_pp), &ce TSRMLS_CC);
if (found == FAILURE) {