You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ko...@apache.org on 2017/07/07 10:51:24 UTC

svn commit: r1801143 - /httpd/httpd/trunk/server/mpm/winnt/child.c

Author: kotkov
Date: Fri Jul  7 10:51:23 2017
New Revision: 1801143

URL: http://svn.apache.org/viewvc?rev=1801143&view=rev
Log:
mpm_winnt: Don't forget to close the I/O completion port as part of the
cleanup in the child process.

Modified:
    httpd/httpd/trunk/server/mpm/winnt/child.c

Modified: httpd/httpd/trunk/server/mpm/winnt/child.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/winnt/child.c?rev=1801143&r1=1801142&r2=1801143&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/winnt/child.c (original)
+++ httpd/httpd/trunk/server/mpm/winnt/child.c Fri Jul  7 10:51:23 2017
@@ -1268,6 +1268,7 @@ void child_main(apr_pool_t *pconf, DWORD
     apr_thread_mutex_destroy(child_lock);
     apr_thread_mutex_destroy(qlock);
     CloseHandle(qwait_event);
+    CloseHandle(ThreadDispatchIOCP);
 
     apr_pool_destroy(pchild);
     CloseHandle(exit_event);