From: Joe Orton Date: Mon, 25 Feb 2008 20:59:13 +0000 (+0000) Subject: * modules/ssl/ssl_scache_dbm.c (ssl_scache_dbm_create): Fix for X-Git-Tag: 2.3.0~933 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=785c643624c582b9f9a0b4d8c1ea1af728eb3eba;p=thirdparty%2Fapache%2Fhttpd.git * modules/ssl/ssl_scache_dbm.c (ssl_scache_dbm_create): Fix for r630974; create the subpool. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630990 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_scache_dbm.c b/modules/ssl/ssl_scache_dbm.c index 50b5660b098..a2a225578de 100644 --- a/modules/ssl/ssl_scache_dbm.c +++ b/modules/ssl/ssl_scache_dbm.c @@ -52,6 +52,8 @@ static const char *ssl_scache_dbm_create(void **context, const char *arg, return apr_psprintf(tmp, "Invalid cache file path %s", arg); } + apr_pool_create(&ctx->pool, p); + return NULL; }