|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-02-21 02:52 UTC] sniper@php.net
[2004-02-21 17:06 UTC] msisolak at yahoo dot com
[2004-02-23 14:07 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 07:00:01 2025 UTC |
Description: ------------ The ISAPI doesn't call sapi_shutdown() so the known_post_content_types hash tables doesn't get freed. Patch: --- php5isapi.c.orig Tue Feb 17 17:07:14 2004 +++ php5isapi.c Tue Feb 17 17:03:54 2004 @@ -935,6 +935,7 @@ if (isapi_sapi_module.shutdown) { isapi_sapi_module.shutdown(&sapi_module); } + sapi_shutdown(); tsrm_shutdown(); break; }