You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2013/05/23 18:31:01 UTC

svn commit: r1485772 - /httpd/httpd/trunk/modules/http/http_filters.c

Author: minfrin
Date: Thu May 23 16:31:01 2013
New Revision: 1485772

URL: http://svn.apache.org/r1485772
Log:
Ensure that any meta buckets are stripped while parsing a chunk.

Modified:
    httpd/httpd/trunk/modules/http/http_filters.c

Modified: httpd/httpd/trunk/modules/http/http_filters.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_filters.c?rev=1485772&r1=1485771&r2=1485772&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_filters.c (original)
+++ httpd/httpd/trunk/modules/http/http_filters.c Thu May 23 16:31:01 2013
@@ -331,9 +331,9 @@ apr_status_t ap_http_filter(ap_filter_t 
         APR_BRIGADE_INSERT_TAIL(b, e);
         return APR_SUCCESS;
     }
-    apr_brigade_cleanup(b);
 
     do {
+        apr_brigade_cleanup(b);
         again = 0; /* until further notice */
 
         /* read and handle the brigade */