Skip to content

Commit 69e664d

Browse files
author
SendaoYan
committedDec 9, 2024
8345632: [ASAN] memory leak in get_numbered_property_as_sorted_string function
Reviewed-by: ccheung, dholmes
1 parent 842b363 commit 69e664d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎src/hotspot/share/classfile/modules.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -723,8 +723,7 @@ const char* Modules::get_numbered_property_as_sorted_string(const char* property
723723
}
724724
}
725725

726-
const char* result = (const char*)os::strdup(st.as_string()); // Example: "java.base,java.compiler"
727-
return strcmp(result, "") != 0 ? result : nullptr;
726+
return (st.size() > 0) ? os::strdup(st.as_string()) : nullptr; // Example: "java.base,java.compiler"
728727
}
729728

730729
void Modules::define_archived_modules(Handle h_platform_loader, Handle h_system_loader, TRAPS) {

0 commit comments

Comments
 (0)
Please sign in to comment.