[cpp-sp] branch master updated: Add nullptr cast
Scott Cantor
cantor.2 at osu.edu
Fri Jun 24 14:29:14 EDT 2016
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch master
in repository cpp-sp.
View the commit online:
http://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=51310e1364472327123dd5358e6e9e5d5ee3d1dd
The following commit(s) were added to refs/heads/master by this push:
new 51310e1 Add nullptr cast
51310e1 is described below
commit 51310e1364472327123dd5358e6e9e5d5ee3d1dd
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Jun 24 14:29:10 2016 -0400
Add nullptr cast
---
shibsp/attribute/filtering/impl/XMLAttributeFilter.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/shibsp/attribute/filtering/impl/XMLAttributeFilter.cpp b/shibsp/attribute/filtering/impl/XMLAttributeFilter.cpp
index a92e1f2..04eee1a 100644
--- a/shibsp/attribute/filtering/impl/XMLAttributeFilter.cpp
+++ b/shibsp/attribute/filtering/impl/XMLAttributeFilter.cpp
@@ -290,7 +290,7 @@ boost::tuple<string,const MatchFunctor*,const MatchFunctor*> XMLFilterImpl::buil
if (XMLHelper::getAttrBool(e, false, permitAny)) {
m_log.debug("installing implicit ANY permit rule for attribute (%s)", attrID.c_str());
- perm = SPConfig::getConfig().MatchFunctorManager.newPlugin(AnyMatchFunctorType, make_pair(&permMap,nullptr));
+ perm = SPConfig::getConfig().MatchFunctorManager.newPlugin(AnyMatchFunctorType, make_pair(&permMap,(const DOMElement*)nullptr));
return boost::make_tuple(attrID, perm, deny);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list