You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@locus.apache.org on 2000/10/18 00:48:26 UTC

cvs commit: apache-2.0/src/ap ap_buckets_pool.c

rbb         00/10/17 15:48:25

  Modified:    src/ap   ap_buckets_pool.c
  Log:
  It helps to assign the bucket field in the pool_bucket.  This lets the
  pool bucket's cleanup work correctly.
  
  Revision  Changes    Path
  1.2       +1 -0      apache-2.0/src/ap/ap_buckets_pool.c
  
  Index: ap_buckets_pool.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/ap/ap_buckets_pool.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ap_buckets_pool.c	2000/10/17 21:53:42	1.1
  +++ ap_buckets_pool.c	2000/10/17 22:48:23	1.2
  @@ -121,6 +121,7 @@
       }
   
       b->type = &ap_pool_type;
  +    h->b = b;
   
       apr_register_cleanup(h->p, b->data, pool_bucket_cleanup, apr_null_cleanup);
       return b;