Skip to content

Commit 3c743cf

Browse files
committedSep 15, 2023
8312126: NullPointerException in CertStore.getCRLs after 8297955
Reviewed-by: weijun
1 parent bd26813 commit 3c743cf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/java.naming/share/classes/sun/security/provider/certpath/ldap/LDAPCertStoreImpl.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -779,9 +779,13 @@ synchronized Collection<X509CRL> getCRLs(X509CRLSelector xsel,
779779
} catch (IllegalArgumentException e) {
780780
continue;
781781
}
782-
} else {
782+
} else if (nameObject instanceof String) {
783783
issuerName = (String)nameObject;
784+
} else {
785+
throw new CertStoreException(
786+
"unrecognized issuerName: must be String or byte[]");
784787
}
788+
785789
// If all we want is CA certs, try to get the (probably shorter) ARL
786790
Collection<X509CRL> entryCRLs = Collections.emptySet();
787791
if (certChecking == null || certChecking.getBasicConstraints() != -1) {

0 commit comments

Comments
 (0)
Please sign in to comment.