-
Bug
-
Resolution: Fixed
-
P4
-
7, 8, 11, 17, 21
-
master
private void doGenCRL(PrintStream out)
throws Exception {
if (ids == null) { // <--- this condition is always false
throw new Exception("Must provide -id when -gencrl");
}
...because it is always initialized to non-null, but empty list:
private final List<String> ids = new ArrayList<>(); // used in GENCRL
If there is no -id, an empty CRL will be generated. A CRL can be empty, which means no new certs have been revoked since last update.
throws Exception {
if (ids == null) { // <--- this condition is always false
throw new Exception("Must provide -id when -gencrl");
}
...because it is always initialized to non-null, but empty list:
private final List<String> ids = new ArrayList<>(); // used in GENCRL
If there is no -id, an empty CRL will be generated. A CRL can be empty, which means no new certs have been revoked since last update.
- links to
-
Commit(master) openjdk/jdk/33d00a77
-
Review(master) openjdk/jdk/26972