diff options
| author | Jeff Trawick <trawick@apache.org> | 2003-10-13 23:43:00 +0000 |
|---|---|---|
| committer | Jeff Trawick <trawick@apache.org> | 2003-10-13 23:43:00 +0000 |
| commit | 45384da23bd678a4612f7d55154d7078a579ef79 (patch) | |
| tree | f70b9e493c25988aac016012e12f38930a60ff39 /server/request.c | |
| parent | 4790ff12a731fea889515d6b80169b47411367e7 (diff) | |
| download | httpd-45384da23bd678a4612f7d55154d7078a579ef79.tar.gz | |
tag the pools created for requests and subrequests
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101441 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/request.c')
| -rw-r--r-- | server/request.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/request.c b/server/request.c index df8959304a..a0489b3722 100644 --- a/server/request.c +++ b/server/request.c @@ -1508,6 +1508,7 @@ static request_rec *make_sub_request(const request_rec *r, request_rec *rnew; apr_pool_create(&rrp, r->pool); + apr_pool_tag(rrp, "subrequest"); rnew = apr_pcalloc(rrp, sizeof(request_rec)); rnew->pool = rrp; |
