Skip to content

Commit 5079c38

Browse files
author
Kim Barrett
committedAug 12, 2024
8338160: Fix -Wzero-as-null-pointer-constant warnings in management.cpp
Reviewed-by: dholmes
1 parent 4417c27 commit 5079c38

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -1820,24 +1820,24 @@ JVM_END
18201820
// of a given length and return the objArrayOop
18211821
static objArrayOop get_memory_usage_objArray(jobjectArray array, int length, TRAPS) {
18221822
if (array == nullptr) {
1823-
THROW_(vmSymbols::java_lang_NullPointerException(), 0);
1823+
THROW_NULL(vmSymbols::java_lang_NullPointerException());
18241824
}
18251825

18261826
objArrayOop oa = objArrayOop(JNIHandles::resolve_non_null(array));
18271827
objArrayHandle array_h(THREAD, oa);
18281828

18291829
// array must be of the given length
18301830
if (length != array_h->length()) {
1831-
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
1832-
"The length of the given MemoryUsage array does not match the number of memory pools.", 0);
1831+
THROW_MSG_NULL(vmSymbols::java_lang_IllegalArgumentException(),
1832+
"The length of the given MemoryUsage array does not match the number of memory pools.");
18331833
}
18341834

18351835
// check if the element of array is of type MemoryUsage class
18361836
Klass* usage_klass = Management::java_lang_management_MemoryUsage_klass(CHECK_NULL);
18371837
Klass* element_klass = ObjArrayKlass::cast(array_h->klass())->element_klass();
18381838
if (element_klass != usage_klass) {
1839-
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
1840-
"The element type is not MemoryUsage class", 0);
1839+
THROW_MSG_NULL(vmSymbols::java_lang_IllegalArgumentException(),
1840+
"The element type is not MemoryUsage class");
18411841
}
18421842

18431843
return array_h();

0 commit comments

Comments
 (0)
Please sign in to comment.