]> granicus.if.org Git - php/commitdiff
MFH: fixed bug #27337 (missing sapi_shutdown())
authorfoobar <sniper@php.net>
Mon, 23 Feb 2004 19:15:05 +0000 (19:15 +0000)
committerfoobar <sniper@php.net>
Mon, 23 Feb 2004 19:15:05 +0000 (19:15 +0000)
NEWS
sapi/isapi/php4isapi.c

diff --git a/NEWS b/NEWS
index 5be4b64c107eeda686661fe6584304061dc4f87d..4f8460cbe9be9f9cff6f365bdb2590b600a4b37c 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,8 @@
 PHP 4                                                                      NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? Feb 2004, Version 4.3.5
+- Fixed bug #27337 (missing sapi_shutdown() in sapi/isapi causes memory leak). 
+  (Jani, msisolak at yahoo dot com)
 - Fixed bug #27328 (ftp extension relies on 32-bit longs). (Sara)
 - Fixed bug #27295 (memory leak inside sscanf()). (Ilia)
 - Fixed bug #27293 (two crashes inside image2wbmp()). (Ilia)
index 88d95ebdafbe9d60fc3ab40e98aa47f8d392e2cd..b00c5d4c98f442b785ff66c1f691162e15a9bae9 100644 (file)
@@ -854,6 +854,7 @@ __declspec(dllexport) BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, L
                        if (isapi_sapi_module.shutdown) {
                                isapi_sapi_module.shutdown(&sapi_module);
                        }
+                       sapi_shutdown();
                        tsrm_shutdown();
                        break;
        }