You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2005/01/07 16:43:42 UTC

svn commit: r124514 - /httpd/apreq/trunk/src/apreq_parsers.c

Author: joes
Date: Fri Jan  7 07:43:41 2005
New Revision: 124514

URL: http://svn.apache.org/viewcvs?view=rev&rev=124514
Log:
Fix bogus argument.

Submitted by Max Kellerman.
Reviewed by joes

Modified:
   httpd/apreq/trunk/src/apreq_parsers.c

Modified: httpd/apreq/trunk/src/apreq_parsers.c
Url: http://svn.apache.org/viewcvs/httpd/apreq/trunk/src/apreq_parsers.c?view=diff&rev=124514&p1=httpd/apreq/trunk/src/apreq_parsers.c&r1=124513&p2=httpd/apreq/trunk/src/apreq_parsers.c&r2=124514
==============================================================================
--- httpd/apreq/trunk/src/apreq_parsers.c	(original)
+++ httpd/apreq/trunk/src/apreq_parsers.c	Fri Jan  7 07:43:41 2005
@@ -1302,7 +1302,7 @@
     }
 
     APREQ_BRIGADE_SETASIDE(bb, pool);
-    s = apreq_brigade_concat(bb, ctx->param->bb, bb);
+    s = apreq_brigade_concat(env, ctx->param->bb, bb);
 
     if (s != APR_SUCCESS) {
         ctx->status = GEN_ERROR;