From: Stefan Eissing Date: Tue, 11 Apr 2017 13:36:27 +0000 (+0000) Subject: On the trunk: X-Git-Tag: 2.4.26~162 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c9dbfd4a23dcb0617e3ace956ec29f670641afc;p=thirdparty%2Fapache%2Fhttpd.git On the trunk: mpm_winnt: always invoking ap_lingering_close() at connection end. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1790971 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index 94a1438c607..cfa60987028 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -817,10 +817,8 @@ static DWORD __stdcall worker_main(void *thread_num_val) if (!disconnected) { context->accept_socket = INVALID_SOCKET; - if (!c->aborted) { - ap_lingering_close(c); - } } + ap_lingering_close(c); } ap_update_child_status_from_indexes(0, thread_num, SERVER_DEAD, NULL);