]> granicus.if.org Git - apache/commitdiff
http2: mark tasks' pools.
authorYann Ylavic <ylavic@apache.org>
Thu, 7 Feb 2019 22:32:22 +0000 (22:32 +0000)
committerYann Ylavic <ylavic@apache.org>
Thu, 7 Feb 2019 22:32:22 +0000 (22:32 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1853171 13f79535-47bb-0310-9956-ffa450edef68

modules/http2/h2_task.c

index b67f7a1c347c5a04f394d670232455fe1736c6cc..616d57299a2555a21b6c2ba8fceb7df39e8d5f47 100644 (file)
@@ -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;