bjh 02/04/13 23:18:13
Modified: server/mpm/mpmt_os2 mpmt_os2_child.c
Log:
apr_bucket_alloc_create() now registers a cleanup that does a
apr_bucket_alloc_destroy(). Don't double free by calling it explicitly.
Revision Changes Path
1.20 +0 -1 httpd-2.0/server/mpm/mpmt_os2/mpmt_os2_child.c
Index: mpmt_os2_child.c
===================================================================
RCS file: /home/cvs/httpd-2.0/server/mpm/mpmt_os2/mpmt_os2_child.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- mpmt_os2_child.c 1 Apr 2002 16:42:02 -0000 1.19
+++ mpmt_os2_child.c 14 Apr 2002 06:18:13 -0000 1.20
@@ -443,7 +443,6 @@
}
apr_pool_destroy(pconn);
- apr_bucket_alloc_destroy(bucket_alloc);
ap_update_child_status_from_indexes(child_slot, thread_slot,
SERVER_READY, NULL);
}
|