summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2003-07-27 14:02:46 +0000
committerStanislav Malyshev <stas@php.net>2003-07-27 14:02:46 +0000
commit1cc89effdbf78a1e13dbb23847d4a393bcbfcc0b (patch)
tree749183a91ebac0831222cfe5a28e45a37d28b4e9
parent5bfd386bc344c456edfd7930c9b400bd386dfed0 (diff)
downloadphp-git-1cc89effdbf78a1e13dbb23847d4a393bcbfcc0b.tar.gz
clean the right one
-rw-r--r--Zend/zend_execute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c
index 762c097ddf..eaf3d98c0d 100644
--- a/Zend/zend_execute.c
+++ b/Zend/zend_execute.c
@@ -2557,7 +2557,7 @@ int zend_do_fcall_common_helper(ZEND_OPCODE_HANDLER_ARGS)
} else {
/* clean before putting into the cache, since clean
could call dtors, which could use cached hash */
- zend_hash_clean(*EG(symtable_cache_ptr));
+ zend_hash_clean(EX(function_state).function_symbol_table);
*(++EG(symtable_cache_ptr)) = EX(function_state).function_symbol_table;
}
EG(active_symbol_table) = calling_symbol_table;