summaryrefslogtreecommitdiff
path: root/modules/ldap
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2020-04-16 12:32:33 +0000
committerYann Ylavic <ylavic@apache.org>2020-04-16 12:32:33 +0000
commitf461bcf12cab094245341b66ff69d3556c17f4bb (patch)
tree0f724a9e066d3edce093fca25d2967abb3ad9f15 /modules/ldap
parent118b51d6d65c38cf667885a65fbb96cd3c6508b5 (diff)
downloadhttpd-f461bcf12cab094245341b66ff69d3556c17f4bb.tar.gz
Add missing pool tags to help debugging.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1876599 13f79535-47bb-0310-9956-ffa450edef68
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