diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-30 01:48:22 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-30 01:48:22 +0000 |
commit | b57703825be0ff40d34ee257ce14c453c4bffb98 (patch) | |
tree | 7504a2deef2f4e11ab340ade7b4b92eb6cdb7e15 /Zend/zend_execute_API.c | |
parent | 0701d68f97a66e5435985fa495893b8a68c14533 (diff) | |
download | php-git-b57703825be0ff40d34ee257ce14c453c4bffb98.tar.gz |
Avoid TSRMLS_FETCH()'s (still lots of work left)
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 42137cff0c..e2bc057aab 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -173,8 +173,8 @@ void shutdown_executor(TSRMLS_D) zend_ptr_stack_destroy(&EG(argument_stack)); /* Destroy all op arrays */ - zend_hash_apply(EG(function_table), (int (*)(void *)) is_not_internal_function); - zend_hash_apply(EG(class_table), (int (*)(void *)) is_not_internal_class); + zend_hash_apply(EG(function_table), (apply_func_t) is_not_internal_function); + zend_hash_apply(EG(class_table), (apply_func_t) is_not_internal_class); } zend_end_try(); zend_destroy_rsrc_list(TSRMLS_C); /* must be destroyed after the main symbol table and |