]> granicus.if.org Git - apache/commitdiff
mod_session_dbd: Request Notes should have request lifetime.
authorNick Kew <niq@apache.org>
Wed, 17 Jun 2015 23:09:36 +0000 (23:09 +0000)
committerNick Kew <niq@apache.org>
Wed, 17 Jun 2015 23:09:36 +0000 (23:09 +0000)
Patch by Jacob Champion at ni.com

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1686122 13f79535-47bb-0310-9956-ffa450edef68

modules/session/mod_session_dbd.c

index cf65e5af3cdb54b19bec9f0ad783224143e1f05c..af2dc2d09efec6f3f004c9d699dd1a14fce14dc9 100644 (file)
@@ -191,7 +191,7 @@ static apr_status_t session_dbd_load(request_rec * r, session_rec ** z)
     }
 
     /* first look in the notes */
-    note = apr_pstrcat(r->pool, MOD_SESSION_DBD, name, NULL);
+    note = apr_pstrcat(m->pool, MOD_SESSION_DBD, name, NULL);
     zz = (session_rec *)apr_table_get(m->notes, note);
     if (zz) {
         *z = zz;
@@ -228,8 +228,8 @@ static apr_status_t session_dbd_load(request_rec * r, session_rec ** z)
     }
 
     /* create a new session and return it */
-    zz = (session_rec *) apr_pcalloc(r->pool, sizeof(session_rec));
-    zz->pool = r->pool;
+    zz = (session_rec *) apr_pcalloc(m->pool, sizeof(session_rec));
+    zz->pool = m->pool;
     zz->entries = apr_table_make(zz->pool, 10);
     if (key && val) {
         apr_uuid_t *uuid = apr_pcalloc(zz->pool, sizeof(apr_uuid_t));