diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2003-01-30 00:44:56 +0000 | 
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2003-01-30 00:44:56 +0000 | 
| commit | 62db0b48546321f313e64ca9276338331c4770e6 (patch) | |
| tree | 3ba558f6caa521b9be37bc95521a4cce62ab77da | |
| parent | 9c5ff649927465a668090c31cd5f94819a1d3419 (diff) | |
| download | php-git-62db0b48546321f313e64ca9276338331c4770e6.tar.gz | |
Fix ZTS build.
| -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 6da53cacd0..fb7d14301d 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -227,8 +227,8 @@ void shutdown_executor(TSRMLS_D)  		   So we want first of all to clean up all data and then move to tables destruction.  		   Note that only run-time accessed data need to be cleaned up, pre-defined data can  		   not contain objects and thus are not probelmatic */ -		zend_hash_apply(EG(function_table), (apply_func_t) zend_cleanup_function_data); -		zend_hash_apply(EG(class_table), (apply_func_t) zend_cleanup_class_data); +		zend_hash_apply(EG(function_table), (apply_func_t) zend_cleanup_function_data TSRMLS_CC); +		zend_hash_apply(EG(class_table), (apply_func_t) zend_cleanup_class_data TSRMLS_CC);  		/* Destroy all op arrays */  		if (EG(full_tables_cleanup)) {  			zend_hash_apply(EG(function_table), (apply_func_t) is_not_internal_function TSRMLS_CC); | 
