On Sun, 2 Aug 2026 12:27:06 GMT, Guanqiang Han <[email protected]> wrote:
> Please review this change. Thanks! > > **Description:** > > When an oversized CRL is fetched, the cached `crl` is cleared only when > debugging is enabled, and `lastModified` is not reset. > > **Solution:** > > Always clear the cached `crl` and reset `lastModified` when an oversized CRL > is discarded. > > --------- > - [x] I confirm that I make this contribution in accordance with the [OpenJDK > Interim AI Policy](https://openjdk.org/legal/ai). Fix looks straightforward, but this means `crl` is more likely to be null. If `getMatchingCRLs(null, null)` is called, then `Collections.singletonList(null)` is returned. This looks a little abnormal and I wonder if it will lead to unexpected NPE. ------------- PR Comment: https://git.openjdk.org/jdk/pull/32164#issuecomment-5179376782
