diff options
author | foobar <sniper@php.net> | 2004-02-23 19:12:22 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2004-02-23 19:12:22 +0000 |
commit | 09d5b958710e6e19c6abaa15ff2b30d4b6674a75 (patch) | |
tree | 915e7296718cf5856960aeb472618c0adbb4adc4 /sapi/isapi | |
parent | 4f05437e08940c235aa6089e651a090b2d72898f (diff) | |
download | php-git-09d5b958710e6e19c6abaa15ff2b30d4b6674a75.tar.gz |
Fix bug #27337 (missing sapi_shutdown() causing memory leak)
Diffstat (limited to 'sapi/isapi')
-rw-r--r-- | sapi/isapi/php5isapi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sapi/isapi/php5isapi.c b/sapi/isapi/php5isapi.c index b0d1366299..84f2d67cf7 100644 --- a/sapi/isapi/php5isapi.c +++ b/sapi/isapi/php5isapi.c @@ -935,6 +935,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; } |