[java-identity-provider] branch main updated: Fix null issue.

Scott Cantor cantor.2 at osu.edu
Mon Apr 10 22:31:56 UTC 2023


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=e8048e808a488c7a53c6de2b80a467c83be76ab8

The following commit(s) were added to refs/heads/main by this push:
     new e8048e808 Fix null issue.
e8048e808 is described below

commit e8048e808a488c7a53c6de2b80a467c83be76ab8
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Apr 10 18:31:52 2023 -0400

    Fix null issue.
---
 .../shibboleth/idp/authn/revocation/impl/DoRevocationCacheOperation.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/revocation/impl/DoRevocationCacheOperation.java b/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/revocation/impl/DoRevocationCacheOperation.java
index b570388b5..a246cd9a0 100644
--- a/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/revocation/impl/DoRevocationCacheOperation.java
+++ b/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/revocation/impl/DoRevocationCacheOperation.java
@@ -194,6 +194,7 @@ public class DoRevocationCacheOperation extends AbstractProfileAction {
                 return false;
             }
 
+            assert cId != null;
             revocationCache = getBean(requestContext, cId, RevocationCache.class);
             if (revocationCache == null) {
                 sendError(HttpServletResponse.SC_NOT_FOUND,

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list