summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrpluem <rpluem@13f79535-47bb-0310-9956-ffa450edef68>2008-07-17 07:27:06 +0000
committerrpluem <rpluem@13f79535-47bb-0310-9956-ffa450edef68>2008-07-17 07:27:06 +0000
commit342f8b6fa77ab588a3a65c4aa9632869e4cd1472 (patch)
treeb78155fe3e8e4d71a99e3022c5a40ed0585c15e6
parent12ce5a1a0bec482d49db950b632c6b6c04ea4c90 (diff)
downloadlibapr-util-342f8b6fa77ab588a3a65c4aa9632869e4cd1472.tar.gz
* apr_pool_pre_cleanup_register has no child_cleanup parameter
git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@677523 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--misc/apr_reslist.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/misc/apr_reslist.c b/misc/apr_reslist.c
index e6352cb5..1c571d41 100644
--- a/misc/apr_reslist.c
+++ b/misc/apr_reslist.c
@@ -284,8 +284,7 @@ APU_DECLARE(apr_status_t) apr_reslist_create(apr_reslist_t **reslist,
* this child pool can safely call apr_pool_destroy inside
* apr_reslist_destructor thus safely detaching himself.
*/
- apr_pool_pre_cleanup_register(rl->pool, rl, reslist_cleanup,
- apr_pool_cleanup_null);
+ apr_pool_pre_cleanup_register(rl->pool, rl, reslist_cleanup);
*reslist = rl;