From fa1f1c8e9791688ee7b030bf80b49a154ae24cfa Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Thu, 15 Nov 2018 13:19:32 +0000 Subject: [PATCH] * modules/dav/main/mod_dav.c (dav_method_propfind): Tag the scratchpool. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1846651 13f79535-47bb-0310-9956-ffa450edef68 --- modules/dav/main/mod_dav.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/dav/main/mod_dav.c b/modules/dav/main/mod_dav.c index c1619d82e3..54a3eb5531 100644 --- a/modules/dav/main/mod_dav.c +++ b/modules/dav/main/mod_dav.c @@ -2160,6 +2160,7 @@ static int dav_method_propfind(request_rec *r) ctx.r = r; ctx.bb = apr_brigade_create(r->pool, r->connection->bucket_alloc); apr_pool_create(&ctx.scratchpool, r->pool); + apr_pool_tag(ctx.scratchpool, "mod_dav-scratch"); /* ### should open read-only */ if ((err = dav_open_lockdb(r, 0, &ctx.w.lockdb)) != NULL) { -- 2.50.1