We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3152b7b commit 8ff2b6aCopy full SHA for 8ff2b6a
NEWS
@@ -33,6 +33,7 @@ PHP NEWS
33
- PHPDBG:
34
. Fix undefined behaviour in phpdbg_load_module_or_extension(). (nielsdos)
35
. Fix NULL pointer dereference in phpdbg_create_conditional_breal(). (nielsdos)
36
+ . Fix GH-9710: phpdbg memory leaks by option "-h" (nielsdos)
37
38
- Posix:
39
. Fix memory leak in posix_ttyname() (girgias)
sapi/phpdbg/phpdbg.c
@@ -1414,6 +1414,8 @@ int main(int argc, char **argv) /* {{{ */
1414
get_zend_version()
1415
);
1416
}
1417
+ PHPDBG_G(flags) |= PHPDBG_IS_QUITTING;
1418
+ php_module_shutdown();
1419
sapi_deactivate();
1420
sapi_shutdown();
1421
if (ini_entries) {
0 commit comments