From: Stefan Eissing Date: Thu, 19 Jan 2017 20:38:50 +0000 (+0000) Subject: On the trunk: X-Git-Tag: 2.5.0-alpha~776 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09010da19b19d649e665bf026a015e323be5ba04;p=thirdparty%2Fapache%2Fhttpd.git On the trunk: mod_http2: decoupling lifetime of mplx pool from h2_session which messed up the cleanup ordering. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1779525 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http2/h2_mplx.c b/modules/http2/h2_mplx.c index b535a02a13a..73498775ce2 100644 --- a/modules/http2/h2_mplx.c +++ b/modules/http2/h2_mplx.c @@ -280,7 +280,7 @@ h2_mplx *h2_mplx_create(conn_rec *c, apr_pool_t *parent, m->id = c->id; APR_RING_ELEM_INIT(m, link); m->c = c; - apr_pool_create_ex(&m->pool, parent, NULL, allocator); + apr_pool_create_ex(&m->pool, NULL, NULL, allocator); if (!m->pool) { return NULL; }