diff options
author | Zeev Suraski <zeev@php.net> | 2000-02-05 15:40:05 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-02-05 15:40:05 +0000 |
commit | f207b3623e61da6a25e671fbcef70de49133b714 (patch) | |
tree | 17598a188199162f69cfa341e8f3988e0420b39c /Zend/zend_execute_API.c | |
parent | 3a816341f9f4ffa39b088424d78f967fa0118118 (diff) | |
download | php-git-f207b3623e61da6a25e671fbcef70de49133b714.tar.gz |
Pass the executor globals to internal functions
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 877ce8082c..b8e4aa62db 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -415,7 +415,7 @@ int call_user_function_ex(HashTable *function_table, zval *object, zval *functio EG(opline_ptr) = original_opline_ptr; } else { ALLOC_INIT_ZVAL(*retval_ptr_ptr); - ((zend_internal_function *) function_state.function)->handler(param_count, *retval_ptr_ptr, object, 1); + ((zend_internal_function *) function_state.function)->handler(param_count, *retval_ptr_ptr, object, 1 ELS_CC); INIT_PZVAL(*retval_ptr_ptr); } zend_ptr_stack_clear_multiple(ELS_C); |