Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 52948 invoked from network); 27 Feb 2008 11:07:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Feb 2008 11:07:44 -0000 Received: (qmail 28019 invoked by uid 500); 27 Feb 2008 11:07:40 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 27902 invoked by uid 500); 27 Feb 2008 11:07:39 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 27883 invoked by uid 99); 27 Feb 2008 11:07:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Feb 2008 03:07:39 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED 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; Wed, 27 Feb 2008 11:07:01 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 990511A9832; Wed, 27 Feb 2008 03:07:21 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r631553 - /apr/apr-util/trunk/buckets/apr_brigade.c Date: Wed, 27 Feb 2008 11:07:21 -0000 To: commits@apr.apache.org From: rpluem@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080227110721.990511A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rpluem Date: Wed Feb 27 03:07:16 2008 New Revision: 631553 URL: http://svn.apache.org/viewvc?rev=631553&view=rev Log: * We are working with point64 here, no longer with point. Modified: apr/apr-util/trunk/buckets/apr_brigade.c Modified: apr/apr-util/trunk/buckets/apr_brigade.c URL: http://svn.apache.org/viewvc/apr/apr-util/trunk/buckets/apr_brigade.c?rev=631553&r1=631552&r2=631553&view=diff ============================================================================== --- apr/apr-util/trunk/buckets/apr_brigade.c (original) +++ apr/apr-util/trunk/buckets/apr_brigade.c Wed Feb 27 03:07:16 2008 @@ -161,7 +161,7 @@ * might have been morphed by the apr_bucket_read() above, but * if it was, the length would have been adjusted appropriately */ if (point64 < (apr_uint64_t)e->length) { - rv = apr_bucket_split(e, (apr_size_t)point); + rv = apr_bucket_split(e, (apr_size_t)point64); *after_point = APR_BUCKET_NEXT(e); return rv; }