Skip to content

Commit cabd104

Browse files
Sonia Zaldana Callesjerboaa
Sonia Zaldana Calles
authored andcommittedJun 20, 2024
8334164: The fix for JDK-8322811 should use _filename.is_set() rather than strcmp()
Reviewed-by: dholmes, cjplummer
1 parent d7dad50 commit cabd104

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/hotspot/share/services/diagnosticCommand.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1203,11 +1203,11 @@ SystemDumpMapDCmd::SystemDumpMapDCmd(outputStream* output, bool heap) :
12031203
void SystemDumpMapDCmd::execute(DCmdSource source, TRAPS) {
12041204
stringStream defaultname;
12051205
const char* name = nullptr;
1206-
if (::strcmp(default_filename, _filename.value()) == 0) {
1206+
if (_filename.is_set()) {
1207+
name = _filename.value();
1208+
} else {
12071209
defaultname.print("vm_memory_map_%d.txt", os::current_process_id());
12081210
name = defaultname.base();
1209-
} else {
1210-
name = _filename.value();
12111211
}
12121212
fileStream fs(name);
12131213
if (fs.is_open()) {

0 commit comments

Comments
 (0)
Please sign in to comment.