X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=shibsp%2Fhandler%2Fimpl%2FChainingSessionInitiator.cpp;h=f01cd31bd8f911a75a685e6f4d266b40d25f4abd;hb=ef6a3893b59431063dd7c619129b2854218fe173;hp=468a9e9530a5c1a7c2422d348bcc9ca6b684572d;hpb=e8d53ac65da2624233ffd39c5a2a7dacc02a4b27;p=shibboleth%2Fcpp-sp.git diff --git a/shibsp/handler/impl/ChainingSessionInitiator.cpp b/shibsp/handler/impl/ChainingSessionInitiator.cpp index 468a9e9..f01cd31 100644 --- a/shibsp/handler/impl/ChainingSessionInitiator.cpp +++ b/shibsp/handler/impl/ChainingSessionInitiator.cpp @@ -97,9 +97,9 @@ ChainingSessionInitiator::ChainingSessionInitiator(const DOMElement* e, const ch SPConfig& conf = SPConfig::getConfig(); // Load up the chain of handlers. - e = e ? XMLHelper::getFirstChildElement(e, _SessionInitiator) : NULL; + e = e ? XMLHelper::getFirstChildElement(e, _SessionInitiator) : nullptr; while (e) { - auto_ptr_char type(e->getAttributeNS(NULL,_type)); + auto_ptr_char type(e->getAttributeNS(nullptr,_type)); if (type.get() && *(type.get())) { try { m_handlers.push_back(conf.SessionInitiatorManager.newPlugin(type.get(),make_pair(e, appId)));