From: William A. Rowe Jr Date: Mon, 8 Aug 2005 02:51:32 +0000 (+0000) Subject: Fix a double-termination case in svn trunk/; we terminated the X-Git-Tag: 2.1.7~5^2~40 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c9e977099624a571c2b754d6483cf72eaee27051;p=apache Fix a double-termination case in svn trunk/; we terminated the headers up-front knowing the resulting headers were already correctly composed. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@230733 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy_http.c b/modules/proxy/mod_proxy_http.c index ac4e01c00e..8568679fbc 100644 --- a/modules/proxy/mod_proxy_http.c +++ b/modules/proxy/mod_proxy_http.c @@ -398,7 +398,6 @@ static apr_status_t stream_reqbody_cl(apr_pool_t *p, /* we never sent the header brigade since there was no request * body; send it now with the flush flag */ - terminate_headers(bucket_alloc, header_brigade); bb = header_brigade; status = pass_brigade(bucket_alloc, r, p_conn, origin, bb, 1); }