You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rp...@apache.org on 2008/02/27 12:07:21 UTC

svn commit: r631553 - /apr/apr-util/trunk/buckets/apr_brigade.c

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;
             }