You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jw...@apache.org on 2002/02/04 06:41:41 UTC

cvs commit: apr-util/buckets apr_brigade.c

jwoolley    02/02/03 21:41:41

  Modified:    buckets  apr_brigade.c
  Log:
  Structural clarification.  No functional change [yet].
  
  Revision  Changes    Path
  1.32      +1 -5      apr-util/buckets/apr_brigade.c
  
  Index: apr_brigade.c
  ===================================================================
  RCS file: /home/cvs/apr-util/buckets/apr_brigade.c,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -d -u -r1.31 -r1.32
  --- apr_brigade.c	25 Jan 2002 07:13:43 -0000	1.31
  +++ apr_brigade.c	4 Feb 2002 05:41:41 -0000	1.32
  @@ -367,12 +367,8 @@
               APR_BRIGADE_INSERT_TAIL(bb, e);
               return 1;
           }
  -        else {
  -            return 0;
  -        }
       }
  -
  -    if (APR_BUCKET_IS_HEAP(b)) {
  +    else if (APR_BUCKET_IS_HEAP(b)) {
           apr_bucket_heap *h = b->data;
   
           if (*n > (h->alloc_len - b->length)) {