You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2019/02/07 22:32:22 UTC

svn commit: r1853171 - /httpd/httpd/trunk/modules/http2/h2_task.c

Author: ylavic
Date: Thu Feb  7 22:32:22 2019
New Revision: 1853171

URL: http://svn.apache.org/viewvc?rev=1853171&view=rev
Log:
http2: mark tasks' pools.

Modified:
    httpd/httpd/trunk/modules/http2/h2_task.c

Modified: httpd/httpd/trunk/modules/http2/h2_task.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_task.c?rev=1853171&r1=1853170&r2=1853171&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_task.c (original)
+++ httpd/httpd/trunk/modules/http2/h2_task.c Thu Feb  7 22:32:22 2019
@@ -525,6 +525,7 @@ h2_task *h2_task_create(conn_rec *slave,
     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;