On Fri, 3 Mar 2023 19:45:22 GMT, Matthew Donovan <d...@openjdk.org> wrote:
> Added null-checks for pointCrlIssuers before it is accessed. src/java.base/share/classes/sun/security/provider/certpath/DistributionPointFetcher.java line 485: > 483: // cannot all be missing from a certificate. > 484: for (Iterator<GeneralName> t = > pointCrlIssuers.iterator(); > 485: !match && t.hasNext(); ) { Please keep the 8-char indentation for a wrapped line. Same below. ------------- PR: https://git.openjdk.org/jdk/pull/12866