From: Ruediger Pluem Date: Fri, 29 Jan 2016 11:59:34 +0000 (+0000) Subject: * Use the correct brigade created from the correct bucket allocator for the correct... X-Git-Tag: 2.5.0-alpha~2254 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=249fb572943e46a50f47b901ef4188eaf2697456;p=apache * Use the correct brigade created from the correct bucket allocator for the correct purpose git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1727553 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy_wstunnel.c b/modules/proxy/mod_proxy_wstunnel.c index 3a881114dd..475038e031 100644 --- a/modules/proxy/mod_proxy_wstunnel.c +++ b/modules/proxy/mod_proxy_wstunnel.c @@ -422,8 +422,8 @@ static int proxy_wstunnel_request(apr_pool_t *p, request_rec *r, baton->client_soc = client_socket; baton->server_soc = sock; baton->proxy_connrec = conn; - baton->bb_i = bb; - baton->bb_o = header_brigade; + baton->bb_o = bb; + baton->bb_i = header_brigade; baton->scheme = scheme; apr_pool_create(&baton->subpool, r->pool);