From: Yann Ylavic Date: Thu, 7 Feb 2019 22:32:22 +0000 (+0000) Subject: http2: mark tasks' pools. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a35a81310d67a0c77893ff87e7718de90c21fbda;p=apache http2: mark tasks' pools. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1853171 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http2/h2_task.c b/modules/http2/h2_task.c index b67f7a1c34..616d57299a 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;