followup to r1874673. With the included providers for load/save this path should
not be taken.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1874691 13f79535-47bb-0310-9956-
ffa450edef68
}
}
+ /* no luck, create a blank session. Note that the included session_load
+ * providers will return new sessions during session_load when configured.
+ */
+ if (!zz) {
+ zz = (session_rec *) apr_pcalloc(r->pool, sizeof(session_rec));
+ zz->pool = r->pool;
+ zz->entries = apr_table_make(zz->pool, 10);
+ }
+
/* make sure the expiry and maxage are set, if present */
if (dconf->maxage) {
if (!zz->expiry) {