Skip to content

Commit e6b76ec

Browse files
committed
Merge branch 'master' into preload
* master: Don't wrap php_module_shutdown() with zend_try. executor_globals are released in ZTS build, and this leads to crash. [ci skip] Fix indentation in UPGRADING.
2 parents 4531fbf + 68694c9 commit e6b76ec

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

sapi/phpdbg/phpdbg.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2157,9 +2157,7 @@ int main(int argc, char **argv) /* {{{ */
21572157

21582158
zend_hash_destroy(&PHPDBG_G(file_sources));
21592159

2160-
zend_try {
2161-
php_module_shutdown();
2162-
} zend_end_try();
2160+
php_module_shutdown();
21632161

21642162
#ifndef _WIN32
21652163
/* force override (no zend_signals) to prevent crashes due to signal recursion in SIGSEGV/SIGBUS handlers */

0 commit comments

Comments
 (0)