]> granicus.if.org Git - php/commitdiff
Fix ZTS build.
authorIlia Alshanetsky <iliaa@php.net>
Thu, 30 Jan 2003 00:44:56 +0000 (00:44 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Thu, 30 Jan 2003 00:44:56 +0000 (00:44 +0000)
Zend/zend_execute_API.c

index 6da53cacd07c7f753d169c02acab8d32a8f7c215..fb7d14301dfdcac906eb996f7768e27a4ee24577 100644 (file)
@@ -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);