We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 842b363 commit 69e664dCopy full SHA for 69e664d
src/hotspot/share/classfile/modules.cpp
@@ -723,8 +723,7 @@ const char* Modules::get_numbered_property_as_sorted_string(const char* property
723
}
724
725
726
- const char* result = (const char*)os::strdup(st.as_string()); // Example: "java.base,java.compiler"
727
- return strcmp(result, "") != 0 ? result : nullptr;
+ return (st.size() > 0) ? os::strdup(st.as_string()) : nullptr; // Example: "java.base,java.compiler"
728
729
730
void Modules::define_archived_modules(Handle h_platform_loader, Handle h_system_loader, TRAPS) {
0 commit comments