diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-24 20:30:37 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-24 20:30:37 +0000 |
commit | 536a53356d29ec8023e340702c48fc19dda49027 (patch) | |
tree | c4a5d1c6d5585fed75220904fcea8531dae6d89d /main/SAPI.c | |
parent | 612b3666a94338fe1ca4f0022202eaf0b8c01dee (diff) | |
download | php-git-536a53356d29ec8023e340702c48fc19dda49027.tar.gz |
Get rid of the redundant global startup code
Diffstat (limited to 'main/SAPI.c')
-rw-r--r-- | main/SAPI.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/main/SAPI.c b/main/SAPI.c index edab6bbe56..2cce6a85f2 100644 --- a/main/SAPI.c +++ b/main/SAPI.c @@ -78,8 +78,6 @@ SAPI_API void sapi_startup(sapi_module_struct *sf) #endif reentrancy_startup(); - - php_global_startup_internal_extensions(); } SAPI_API void sapi_shutdown(void) @@ -93,7 +91,6 @@ SAPI_API void sapi_shutdown(void) tsrm_win32_shutdown(); #endif - php_global_shutdown_internal_extensions(); zend_hash_destroy(&known_post_content_types); } |