Skip to content

Commit 5888fbd

Browse files
committed
Backport later interned strings destruction.
1 parent 7e597f4 commit 5888fbd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Zend/zend.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -930,10 +930,6 @@ void zend_shutdown(void) /* {{{ */
930930
GLOBAL_CONSTANTS_TABLE = NULL;
931931
#endif
932932
zend_destroy_rsrc_list_dtors();
933-
934-
#ifndef ZTS
935-
zend_interned_strings_dtor();
936-
#endif
937933
}
938934
/* }}} */
939935

main/main.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2474,6 +2474,10 @@ void php_module_shutdown(void)
24742474

24752475
php_output_shutdown();
24762476

2477+
#ifndef ZTS
2478+
zend_interned_strings_dtor();
2479+
#endif
2480+
24772481
module_initialized = 0;
24782482

24792483
#ifndef ZTS

0 commit comments

Comments
 (0)