From: Scott Cantor Date: Wed, 20 Nov 2013 21:00:14 +0000 (+0000) Subject: https://issues.shibboleth.net/jira/browse/SSPCPP-603 X-Git-Tag: 2.5.3~9 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-sp.git;a=commitdiff_plain;h=1971438780365c97ec370f9b7c6d74c9695c02c2 https://issues.shibboleth.net/jira/browse/SSPCPP-603 --- diff --git a/apache/mod_shib.cpp b/apache/mod_shib.cpp index fe7d038..9cf6ab8 100644 --- a/apache/mod_shib.cpp +++ b/apache/mod_shib.cpp @@ -873,8 +873,9 @@ extern "C" int shib_auth_checker(request_rec* r) #else shib_request_config* rc = (shib_request_config*)ap_get_module_config(r->request_config, &mod_shib); if (!rc || !rc->sta) { - ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "shib_auth_checker found no per-request structure"); - return SERVER_ERROR; + ap_log_rerror(APLOG_MARK, APLOG_INFO|APLOG_NOERRNO, SH_AP_R(r), "shib_auth_checker found no per-request structure"); + shib_post_read(r); // ensures objects are created if post_read hook didn't run + rc = (shib_request_config*)ap_get_module_config(r->request_config, &mod_shib); } ShibTargetApache* psta = rc->sta; #endif