We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 008fb28 commit c564924Copy full SHA for c564924
sapi/phpdbg/phpdbg.c
@@ -228,6 +228,7 @@ static PHP_RSHUTDOWN_FUNCTION(phpdbg) /* {{{ */
228
zend_hash_destroy(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD]);
229
zend_hash_destroy(&PHPDBG_G(bp)[PHPDBG_BREAK_COND]);
230
zend_hash_destroy(&PHPDBG_G(bp)[PHPDBG_BREAK_MAP]);
231
+ zend_hash_destroy(&PHPDBG_G(file_sources));
232
zend_hash_destroy(&PHPDBG_G(seek));
233
zend_hash_destroy(&PHPDBG_G(registered));
234
zend_hash_destroy(&PHPDBG_G(watchpoints));
@@ -2136,8 +2137,6 @@ int main(int argc, char **argv) /* {{{ */
2136
2137
wrapper->wops->stream_opener = PHPDBG_G(orig_url_wrap_php);
2138
}
2139
- zend_hash_destroy(&PHPDBG_G(file_sources));
2140
-
2141
zend_try {
2142
php_module_shutdown();
2143
} zend_end_try();
0 commit comments