From: Joe Orton Date: Thu, 15 Nov 2018 13:19:32 +0000 (+0000) Subject: * modules/dav/main/mod_dav.c (dav_method_propfind): Tag the scratchpool. X-Git-Tag: 2.5.0-alpha2-ci-test-only~2243 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa1f1c8e9791688ee7b030bf80b49a154ae24cfa;p=thirdparty%2Fapache%2Fhttpd.git * 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 --- diff --git a/modules/dav/main/mod_dav.c b/modules/dav/main/mod_dav.c index c1619d82e31..54a3eb5531b 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) {