Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 48694 invoked by uid 500); 15 Aug 2000 06:58:35 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 48683 invoked by uid 500); 15 Aug 2000 06:58:35 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 15 Aug 2000 06:58:35 -0000 Message-ID: <20000815065835.48679.qmail@locus.apache.org> From: fanf@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/include ap_buckets.h fanf 00/08/14 23:58:32 Modified: src/include ap_buckets.h Log: clarify a comment: the ap_bucket itself is freed by ap_bucket_destroy, not by the per-bucket destroy function. Revision Changes Path 1.11 +4 -4 apache-2.0/src/include/ap_buckets.h Index: ap_buckets.h =================================================================== RCS file: /home/cvs/apache-2.0/src/include/ap_buckets.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -u -r1.10 -r1.11 --- ap_buckets.h 2000/08/15 01:50:16 1.10 +++ ap_buckets.h 2000/08/15 06:58:31 1.11 @@ -165,10 +165,10 @@ * a table. In any case, these functions will always be available. */ - /** A function pointer to destroy the data in the bucket and the bucket - * itself. Some of the buckets implement reference couting, and those - * buckets all have a sub-bucket which is not destroyed until the - * reference count is zero. */ + /** + * Free the private data and any resources used by the bucket + * (if they aren't shared with another bucket). + */ void (*destroy)(ap_bucket *e); /* can be NULL */ /** Read the data from the bucket.