Commit dc0dca99 authored by Jeff Trawick's avatar Jeff Trawick
Browse files

Fix a problem in the path which preserves the input content

length; the header brigade would get lost

Submitted by: Allan Edwards


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody@124202 13f79535-47bb-0310-9956-ffa450edef68
parent fc767bfd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -457,7 +457,7 @@ static apr_status_t stream_reqbody_cl(apr_pool_t *p,
            b = input_brigade;
        }
        
        status = pass_brigade(r, conn, origin, input_brigade, 1);
        status = pass_brigade(r, conn, origin, b, 1);
        if (status != APR_SUCCESS) {
            return status;
        }