From: Nick Kew Date: Mon, 5 Dec 2005 15:30:15 +0000 (+0000) Subject: Fix for Bug 37790 (hangs on error return from post_read_request) X-Git-Tag: 2.3.0~2694 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78513efe1204d5d77fe28d663ec8aa471c22e387;p=thirdparty%2Fapache%2Fhttpd.git Fix for Bug 37790 (hangs on error return from post_read_request) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@354085 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index f7f0a8ce1eb..600ed5e2738 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -990,6 +990,8 @@ request_rec *ap_read_request(conn_rec *conn) } if ((access_status = ap_run_post_read_request(r))) { + ap_add_input_filter_handle(ap_http_input_filter_handle, + NULL, r, r->connection); ap_die(access_status, r); ap_update_child_status(conn->sbh, SERVER_BUSY_LOG, r); ap_run_log_transaction(r);