mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
Backport later interned strings destruction.
This commit is contained in:
parent
7e597f48e9
commit
5888fbde0d
@ -930,10 +930,6 @@ void zend_shutdown(void) /* {{{ */
|
|||||||
GLOBAL_CONSTANTS_TABLE = NULL;
|
GLOBAL_CONSTANTS_TABLE = NULL;
|
||||||
#endif
|
#endif
|
||||||
zend_destroy_rsrc_list_dtors();
|
zend_destroy_rsrc_list_dtors();
|
||||||
|
|
||||||
#ifndef ZTS
|
|
||||||
zend_interned_strings_dtor();
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
/* }}} */
|
/* }}} */
|
||||||
|
|
||||||
|
@ -2474,6 +2474,10 @@ void php_module_shutdown(void)
|
|||||||
|
|
||||||
php_output_shutdown();
|
php_output_shutdown();
|
||||||
|
|
||||||
|
#ifndef ZTS
|
||||||
|
zend_interned_strings_dtor();
|
||||||
|
#endif
|
||||||
|
|
||||||
module_initialized = 0;
|
module_initialized = 0;
|
||||||
|
|
||||||
#ifndef ZTS
|
#ifndef ZTS
|
||||||
|
Loading…
Reference in New Issue
Block a user