diff options
| author | Yann Ylavic <ylavic@apache.org> | 2020-04-16 12:32:33 +0000 |
|---|---|---|
| committer | Yann Ylavic <ylavic@apache.org> | 2020-04-16 12:32:33 +0000 |
| commit | f461bcf12cab094245341b66ff69d3556c17f4bb (patch) | |
| tree | 0f724a9e066d3edce093fca25d2967abb3ad9f15 /modules/mappers/mod_speling.c | |
| parent | 118b51d6d65c38cf667885a65fbb96cd3c6508b5 (diff) | |
| download | httpd-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/mappers/mod_speling.c')
| -rw-r--r-- | modules/mappers/mod_speling.c | 1 |
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 *)); |
