X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=saml%2FSAMLConfig.cpp;h=eac17f89bc43bc64fd21548714701dacbad7539b;hb=e9554c255ad3c91c7c4976e7a1a54905903e66a2;hp=12e60e1d706811ffbfa7204b3cd5f247b4eccfb9;hpb=840b05eda26529a8c06790960bbb227162523309;p=shibboleth%2Fcpp-opensaml.git diff --git a/saml/SAMLConfig.cpp b/saml/SAMLConfig.cpp index 12e60e1..eac17f8 100644 --- a/saml/SAMLConfig.cpp +++ b/saml/SAMLConfig.cpp @@ -1,6 +1,6 @@ /* - * Copyright 2001-2009 Internet2 + * Copyright 2001-2010 Internet2 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -104,7 +104,7 @@ SAMLInternalConfig& SAMLInternalConfig::getInternalConfig() return g_config; } -SAMLConfig::SAMLConfig() : m_artifactMap(NULL) +SAMLConfig::SAMLConfig() : m_artifactMap(nullptr) { } @@ -175,7 +175,7 @@ void SAMLInternalConfig::term(bool termXMLTooling) MetadataProviderManager.deregisterFactories(); delete m_artifactMap; - m_artifactMap = NULL; + m_artifactMap = nullptr; if (termXMLTooling) XMLToolingConfig::getConfig().term(); @@ -250,13 +250,13 @@ using namespace saml2md; void opensaml::annotateException(XMLToolingException* e, const EntityDescriptor* entity, const Status* status, bool rethrow) { - const RoleDescriptor* role = NULL; + const RoleDescriptor* role = nullptr; if (entity) { const list& roles=entity->getOrderedChildren(); for (list::const_iterator child=roles.begin(); !role && child!=roles.end(); ++child) { role=dynamic_cast(*child); if (role && !role->isValid()) - role = NULL; + role = nullptr; } } annotateException(e, role, status, rethrow); @@ -275,8 +275,8 @@ void opensaml::annotateException(XMLToolingException* e, const RoleDescriptor* r || XMLString::equals(ctype,ContactPerson::CONTACT_TECHNICAL))) { GivenName* fname=(*c)->getGivenName(); SurName* lname=(*c)->getSurName(); - auto_ptr_char first(fname ? fname->getName() : NULL); - auto_ptr_char last(lname ? lname->getName() : NULL); + auto_ptr_char first(fname ? fname->getName() : nullptr); + auto_ptr_char last(lname ? lname->getName() : nullptr); if (first.get() && last.get()) { string contact=string(first.get()) + ' ' + last.get(); e->addProperty("contactName",contact.c_str()); @@ -302,7 +302,7 @@ void opensaml::annotateException(XMLToolingException* e, const RoleDescriptor* r } if (status) { - auto_ptr_char sc(status->getStatusCode() ? status->getStatusCode()->getValue() : NULL); + auto_ptr_char sc(status->getStatusCode() ? status->getStatusCode()->getValue() : nullptr); if (sc.get() && *sc.get()) e->addProperty("statusCode", sc.get()); if (status->getStatusCode()->getStatusCode()) {