Backport later interned strings destruction.

This commit is contained in:
Dmitry Stogov 2018-12-24 13:45:02 +03:00
parent 7e597f48e9
commit 5888fbde0d
2 changed files with 4 additions and 4 deletions

View File

@ -930,10 +930,6 @@ void zend_shutdown(void) /* {{{ */
GLOBAL_CONSTANTS_TABLE = NULL;
#endif
zend_destroy_rsrc_list_dtors();
#ifndef ZTS
zend_interned_strings_dtor();
#endif
}
/* }}} */

View File

@ -2474,6 +2474,10 @@ void php_module_shutdown(void)
php_output_shutdown();
#ifndef ZTS
zend_interned_strings_dtor();
#endif
module_initialized = 0;
#ifndef ZTS