summaryrefslogtreecommitdiff
path: root/modules/ldap
diff options
context:
space:
mode:
Diffstat (limited to 'modules/ldap')
-rw-r--r--modules/ldap/util_ldap.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/ldap/util_ldap.c b/modules/ldap/util_ldap.c
index 22db0fe08b..57aa856e5b 100644
--- a/modules/ldap/util_ldap.c
+++ b/modules/ldap/util_ldap.c
@@ -861,6 +861,7 @@ static util_ldap_connection_t *
#endif
return NULL;
}
+ apr_pool_tag(newpool, "util_ldap_connection");
/*
* Add the new connection entry to the linked list. Note that we
@@ -908,6 +909,7 @@ static util_ldap_connection_t *
#endif
return NULL;
}
+ apr_pool_tag(l->rebind_pool, "util_ldap_rebind");
}
if (p) {
@@ -2854,6 +2856,7 @@ static void *util_ldap_create_config(apr_pool_t *p, server_rec *s)
* no shared memory managed by either.
*/
apr_pool_create(&st->pool, p);
+ apr_pool_tag(st->pool, "util_ldap_state");
#if APR_HAS_THREADS
apr_thread_mutex_create(&st->mutex, APR_THREAD_MUTEX_DEFAULT, st->pool);
#endif