diff options
author | Yann Ylavic <ylavic@apache.org> | 2020-04-16 14:32:33 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2020-04-16 14:32:33 +0200 |
commit | f461bcf12cab094245341b66ff69d3556c17f4bb (patch) | |
tree | 0f724a9e066d3edce093fca25d2967abb3ad9f15 /server/request.c | |
parent | Axe remainder from r1875947. (diff) | |
download | apache2-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 '')
-rw-r--r-- | server/request.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/request.c b/server/request.c index d06bab5d31..1e9a15a28a 100644 --- a/server/request.c +++ b/server/request.c @@ -1268,6 +1268,7 @@ AP_DECLARE(int) ap_directory_walk(request_rec *r) if (entry_core->refs && entry_core->refs->nelts) { if (!rxpool) { apr_pool_create(&rxpool, r->pool); + apr_pool_tag(rxpool, "directory_walk_rxpool"); } nmatch = entry_core->refs->nelts; pmatch = apr_palloc(rxpool, nmatch*sizeof(ap_regmatch_t)); @@ -1485,6 +1486,7 @@ AP_DECLARE(int) ap_location_walk(request_rec *r) if (entry_core->refs && entry_core->refs->nelts) { if (!rxpool) { apr_pool_create(&rxpool, r->pool); + apr_pool_tag(rxpool, "location_walk_rxpool"); } nmatch = entry_core->refs->nelts; pmatch = apr_palloc(rxpool, nmatch*sizeof(ap_regmatch_t)); @@ -1687,6 +1689,7 @@ AP_DECLARE(int) ap_file_walk(request_rec *r) if (entry_core->refs && entry_core->refs->nelts) { if (!rxpool) { apr_pool_create(&rxpool, r->pool); + apr_pool_tag(rxpool, "file_walk_rxpool"); } nmatch = entry_core->refs->nelts; pmatch = apr_palloc(rxpool, nmatch*sizeof(ap_regmatch_t)); |