Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 13784 invoked from network); 19 Mar 2007 15:03:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Mar 2007 15:03:41 -0000 Received: (qmail 5949 invoked by uid 500); 19 Mar 2007 15:03:48 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 5897 invoked by uid 500); 19 Mar 2007 15:03:48 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 5886 invoked by uid 99); 19 Mar 2007 15:03:47 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Mar 2007 08:03:47 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Mar 2007 08:03:39 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 3F0C71A9838; Mon, 19 Mar 2007 08:03:19 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r519968 - /httpd/httpd/trunk/docs/manual/developer/output-filters.xml Date: Mon, 19 Mar 2007 15:03:18 -0000 To: cvs@httpd.apache.org From: jim@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070319150319.3F0C71A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jim Date: Mon Mar 19 08:03:17 2007 New Revision: 519968 URL: http://svn.apache.org/viewvc?view=rev&rev=519968 Log: Note what the actually "valid" usage for apr_brigade_destroy is, but still urge people to avoid it. Modified: httpd/httpd/trunk/docs/manual/developer/output-filters.xml Modified: httpd/httpd/trunk/docs/manual/developer/output-filters.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/developer/output-filters.xml?view=diff&rev=519968&r1=519967&r2=519968 ============================================================================== --- httpd/httpd/trunk/docs/manual/developer/output-filters.xml (original) +++ httpd/httpd/trunk/docs/manual/developer/output-filters.xml Mon Mar 19 08:03:17 2007 @@ -170,7 +170,9 @@ href="#state">state structure.

It is generally never advisable to use - apr_brigade_destroy to "destroy" a brigade. The + apr_brigade_destroy to "destroy" a brigade unless + you know for certain that the brigade will never be used + again, even then, it should be used rarely. The memory used by the brigade structure will not be released by calling this function (since it comes from a pool), but the associated pool cleanup is unregistered. Using