Skip to content

Commit 7638580

Browse files
author
Lin Zang
committedAug 13, 2020
8251374: jmap -dump could accept invalid options
Emit usage(1) in dump() argument loop Reviewed-by: sspitsyn, phh
1 parent 0db8386 commit 7638580

File tree

1 file changed

+5
-0
lines changed
  • src/jdk.jcmd/share/classes/sun/tools/jmap

1 file changed

+5
-0
lines changed
 

‎src/jdk.jcmd/share/classes/sun/tools/jmap/JMap.java

+5
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,11 @@ private static void dump(String pid, String options)
216216
liveopt = "-live";
217217
} else if (subopt.startsWith("file=")) {
218218
filename = parseFileName(subopt);
219+
} else if (subopt.equals("format=b")) {
220+
// ignore format (not needed at this time)
221+
} else {
222+
System.err.println("Fail: invalid option: '" + subopt + "'");
223+
usage(1);
219224
}
220225
}
221226

0 commit comments

Comments
 (0)
Please sign in to comment.