From: Ryan Bloom Date: Tue, 17 Oct 2000 17:26:46 +0000 (+0000) Subject: Remove an incorrect comment. Bucket brigades are allocated out of pools, X-Git-Tag: APACHE_2_0_ALPHA_8~337 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b61db87313230e688fc7b177902bbb45f21ac093;p=thirdparty%2Fapache%2Fhttpd.git Remove an incorrect comment. Bucket brigades are allocated out of pools, 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 --- diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index 0911e7543a6..535a3ee097b 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -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) {