jwoolley 01/06/18 14:39:29
Modified: buckets apr_buckets_pool.c
Log:
Pool buckets should use _setaside_noop instead of _setaside_notimpl.
If the data in the pool bucket is still in use when the pool it's in dies,
the data gets copied onto the heap anyway; therefore, there's no need to
make sure that the data will live at least a certain length because the
cleanup logic makes it effectively live forever.
Revision Changes Path
1.19 +1 -1 apr-util/buckets/apr_buckets_pool.c
Index: apr_buckets_pool.c
===================================================================
RCS file: /home/cvs/apr-util/buckets/apr_buckets_pool.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -u -r1.18 -r1.19
--- apr_buckets_pool.c 2001/05/21 19:14:34 1.18
+++ apr_buckets_pool.c 2001/06/18 21:39:27 1.19
@@ -172,7 +172,7 @@
"POOL", 5,
pool_destroy,
pool_read,
- apr_bucket_setaside_notimpl,
+ apr_bucket_setaside_noop,
apr_bucket_shared_split,
apr_bucket_shared_copy
};