diff options
author | Zeev Suraski <zeev@php.net> | 2000-02-05 15:11:24 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-02-05 15:11:24 +0000 |
commit | 9f51f154aa5e40baabd3b605675edef5772778a8 (patch) | |
tree | 913caedad44228494f4fd13c7ea9b337d499660f /Zend/zend_execute_API.c | |
parent | 5ac1ee403bed25e0a0b6c515991692df07c41ddb (diff) | |
download | php-git-9f51f154aa5e40baabd3b605675edef5772778a8.tar.gz |
- Stop passing list/plist to internal functions
- Add a typedef for the pCopyConstructor function pointer
- Minor hacks
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 a5e1d0c996..877ce8082c 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, &EG(regular_list), &EG(persistent_list), object, 1); + ((zend_internal_function *) function_state.function)->handler(param_count, *retval_ptr_ptr, object, 1); INIT_PZVAL(*retval_ptr_ptr); } zend_ptr_stack_clear_multiple(ELS_C); |