From: Evgeny Kotkov Date: Fri, 7 Jul 2017 10:51:23 +0000 (+0000) Subject: mpm_winnt: Don't forget to close the I/O completion port as part of the X-Git-Tag: 2.5.0-alpha~302 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6da8236354d7d1945e7e4419dd90653b3f755a6e;p=thirdparty%2Fapache%2Fhttpd.git mpm_winnt: Don't forget to close the I/O completion port as part of the cleanup in the child process. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1801143 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index 559f41c0cc7..44a2b61c201 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -1268,6 +1268,7 @@ void child_main(apr_pool_t *pconf, DWORD parent_pid) apr_thread_mutex_destroy(child_lock); apr_thread_mutex_destroy(qlock); CloseHandle(qwait_event); + CloseHandle(ThreadDispatchIOCP); apr_pool_destroy(pchild); CloseHandle(exit_event);