From a35a81310d67a0c77893ff87e7718de90c21fbda Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Thu, 7 Feb 2019 22:32:22 +0000 Subject: [PATCH] http2: mark tasks' pools. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1853171 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http2/h2_task.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/http2/h2_task.c b/modules/http2/h2_task.c index b67f7a1c347..616d57299a2 100644 --- a/modules/http2/h2_task.c +++ b/modules/http2/h2_task.c @@ -525,6 +525,7 @@ h2_task *h2_task_create(conn_rec *slave, int stream_id, ap_assert(req); apr_pool_create(&pool, slave->pool); + apr_pool_tag(pool, "h2_task"); task = apr_pcalloc(pool, sizeof(h2_task)); if (task == NULL) { return NULL; -- 2.47.3