summaryrefslogtreecommitdiffstats
path: root/modules/mappers/mod_speling.c
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2020-04-16 14:32:33 +0200
committerYann Ylavic <ylavic@apache.org>2020-04-16 14:32:33 +0200
commitf461bcf12cab094245341b66ff69d3556c17f4bb (patch)
tree0f724a9e066d3edce093fca25d2967abb3ad9f15 /modules/mappers/mod_speling.c
parentAxe remainder from r1875947. (diff)
downloadapache2-f461bcf12cab094245341b66ff69d3556c17f4bb.tar.xz
apache2-f461bcf12cab094245341b66ff69d3556c17f4bb.zip
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/mappers/mod_speling.c')
-rw-r--r--modules/mappers/mod_speling.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/mappers/mod_speling.c b/modules/mappers/mod_speling.c
index 35d33ea03d..2ed65eb810 100644
--- a/modules/mappers/mod_speling.c
+++ b/modules/mappers/mod_speling.c
@@ -419,6 +419,7 @@ static int check_speling(request_rec *r)
if (apr_pool_create(&sub_pool, p) != APR_SUCCESS)
return DECLINED;
+ apr_pool_tag(sub_pool, "speling_sub");
t = apr_array_make(sub_pool, candidates->nelts * 8 + 8,
sizeof(char *));