Add implicit support for a "null" protocol.
authorcantor <cantor@fb386ef7-a10c-0410-8ebf-fd3f8e989ab0>
Fri, 8 Feb 2008 17:13:28 +0000 (17:13 +0000)
committercantor <cantor@fb386ef7-a10c-0410-8ebf-fd3f8e989ab0>
Fri, 8 Feb 2008 17:13:28 +0000 (17:13 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-opensaml2/trunk@373 fb386ef7-a10c-0410-8ebf-fd3f8e989ab0

saml/saml2/metadata/impl/MetadataImpl.cpp

index c7088ea..91615d9 100644 (file)
@@ -965,6 +965,8 @@ namespace opensaml {
             IMPL_TYPED_CHILDREN(ContactPerson,m_pos_ContactPerson);
 
             bool hasSupport(const XMLCh* protocol) const {
+                if (!protocol || !*protocol)
+                    return true;
                 if (m_ProtocolSupportEnumeration) {
                     // Look for first character.
                     unsigned int len=XMLString::stringLen(protocol);