Skip to content

Commit

Permalink
JDK-8347268
Browse files Browse the repository at this point in the history
  • Loading branch information
MBaesken committed Jan 8, 2025
1 parent 672c413 commit f165591
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/hotspot/share/logging/logOutput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,9 @@ bool LogOutput::parse_options(const char* options, outputStream* errstream) {
}
break;
}
pos = comma_pos + 1;
if (comma_pos != nullptr) {
pos = comma_pos + 1;
}
} while (comma_pos != nullptr);

os::free(opts);
Expand Down

0 comments on commit f165591

Please sign in to comment.