From: Scott Cantor Date: Wed, 2 May 2007 17:30:09 +0000 (+0000) Subject: Need to return from method. X-Git-Tag: 2.0-alpha1~35 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-opensaml.git;a=commitdiff_plain;h=d08c88d7baf74c34746555926f1700f56da9742b Need to return from method. --- diff --git a/saml/saml2/profile/BrowserSSOProfile20Validator.cpp b/saml/saml2/profile/BrowserSSOProfile20Validator.cpp index 1216dc2..fea674d 100644 --- a/saml/saml2/profile/BrowserSSOProfile20Validator.cpp +++ b/saml/saml2/profile/BrowserSSOProfile20Validator.cpp @@ -81,7 +81,7 @@ void BrowserSSOProfileValidator::validateAssertion(const Assertion& assertion) c } // Pass up for additional checking. - AssertionValidator::validateAssertion(assertion); + return AssertionValidator::validateAssertion(assertion); } } }