]> granicus.if.org Git - apache/commitdiff
Remove an incorrect comment. Bucket brigades are allocated out of pools,
authorRyan Bloom <rbb@apache.org>
Tue, 17 Oct 2000 17:26:46 +0000 (17:26 +0000)
committerRyan Bloom <rbb@apache.org>
Tue, 17 Oct 2000 17:26:46 +0000 (17:26 +0000)
if we drop one on the floor, it will get cleaned up when we clean the pool.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86629 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_protocol.c

index 0911e7543a6ebc26a5aabdbba08cb10b31e09afb..535a3ee097be5e6c7c3741c00f3e6703fb80fc52 100644 (file)
@@ -991,7 +991,7 @@ apr_status_t http_filter(ap_filter_t *f, ap_bucket_brigade *b, apr_ssize_t lengt
     else {
         if (ctx->b) {
             AP_BRIGADE_CONCAT(b, ctx->b);
-            ctx->b = NULL; /* XXX we just leaked a brigade structure */
+            ctx->b = NULL;
         }
         else {
             if ((rv = ap_get_brigade(f->next, b, AP_GET_LINE)) != APR_SUCCESS) {