Skip to content

Commit 0fd09d3

Browse files
committedMar 11, 2022
8282978: Wrong parameter passed to GetStringXXXChars in various places
Reviewed-by: alanb, dfuchs
1 parent 95ca944 commit 0fd09d3

File tree

9 files changed

+22
-22
lines changed

9 files changed

+22
-22
lines changed
 

‎src/java.base/unix/native/libnet/Inet4AddressImpl.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -100,7 +100,7 @@ Java_java_net_Inet4AddressImpl_lookupAllHostAddr(JNIEnv *env, jobject this,
100100
JNU_ThrowNullPointerException(env, "host argument is null");
101101
return NULL;
102102
}
103-
hostname = JNU_GetStringPlatformChars(env, host, JNI_FALSE);
103+
hostname = JNU_GetStringPlatformChars(env, host, NULL);
104104
CHECK_NULL_RETURN(hostname, NULL);
105105

106106
// try once, with our static buffer

‎src/java.base/unix/native/libnet/Inet6AddressImpl.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -220,7 +220,7 @@ Java_java_net_Inet6AddressImpl_lookupAllHostAddr(JNIEnv *env, jobject this,
220220
JNU_ThrowNullPointerException(env, "host argument is null");
221221
return NULL;
222222
}
223-
hostname = JNU_GetStringPlatformChars(env, host, JNI_FALSE);
223+
hostname = JNU_GetStringPlatformChars(env, host, NULL);
224224
CHECK_NULL_RETURN(hostname, NULL);
225225

226226
// try once, with our static buffer

‎src/java.base/windows/native/libnet/Inet4AddressImpl.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -76,7 +76,7 @@ Java_java_net_Inet4AddressImpl_lookupAllHostAddr(JNIEnv *env, jobject this,
7676
JNU_ThrowNullPointerException(env, "host argument is null");
7777
return NULL;
7878
}
79-
hostname = JNU_GetStringPlatformChars(env, host, JNI_FALSE);
79+
hostname = JNU_GetStringPlatformChars(env, host, NULL);
8080
CHECK_NULL_RETURN(hostname, NULL);
8181

8282
// try once, with our static buffer

‎src/java.base/windows/native/libnet/Inet6AddressImpl.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -71,7 +71,7 @@ Java_java_net_Inet6AddressImpl_lookupAllHostAddr(JNIEnv *env, jobject this,
7171
JNU_ThrowNullPointerException(env, "host argument is null");
7272
return NULL;
7373
}
74-
hostname = JNU_GetStringPlatformChars(env, host, JNI_FALSE);
74+
hostname = JNU_GetStringPlatformChars(env, host, NULL);
7575
CHECK_NULL_RETURN(hostname, NULL);
7676

7777
// try once, with our static buffer

‎src/java.desktop/unix/native/libawt_xawt/xawt/XlibWrapper.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -825,7 +825,7 @@ JNIEXPORT void JNICALL Java_sun_awt_X11_XlibWrapper_SetProperty
825825
*/
826826
if (!JNU_IsNull(env, jstr)) {
827827
#ifdef X_HAVE_UTF8_STRING
828-
cname = (char *) (*env)->GetStringUTFChars(env, jstr, JNI_FALSE);
828+
cname = (char *) (*env)->GetStringUTFChars(env, jstr, NULL);
829829
#else
830830
cname = (char *) JNU_GetStringPlatformChars(env, jstr, NULL);
831831
#endif

‎src/java.desktop/windows/native/libawt/windows/awt_Button.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2015, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -105,7 +105,7 @@ AwtButton* AwtButton::Create(jobject self, jobject parent)
105105
if (label == NULL) {
106106
labelStr = L"";
107107
} else {
108-
labelStr = JNU_GetStringPlatformChars(env, label, JNI_FALSE);
108+
labelStr = JNU_GetStringPlatformChars(env, label, NULL);
109109
}
110110
style = 0;
111111

@@ -311,7 +311,7 @@ void AwtButton::_SetLabel(void *param)
311311
if (label == NULL) {
312312
labelStr = TEXT("");
313313
} else {
314-
labelStr = JNU_GetStringPlatformChars(env, label, JNI_FALSE);
314+
labelStr = JNU_GetStringPlatformChars(env, label, NULL);
315315
}
316316

317317
if (labelStr == NULL) {

‎src/java.desktop/windows/native/libawt/windows/awt_Checkbox.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2015, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -106,7 +106,7 @@ AwtCheckbox* AwtCheckbox::Create(jobject peer, jobject parent)
106106

107107
label = (jstring)env->GetObjectField(target, AwtCheckbox::labelID);
108108
if (label != NULL) {
109-
labelStr = JNU_GetStringPlatformChars(env, label, 0);
109+
labelStr = JNU_GetStringPlatformChars(env, label, NULL);
110110
}
111111
if (labelStr != 0) {
112112
jint x = env->GetIntField(target, AwtComponent::xID);
@@ -375,7 +375,7 @@ void AwtCheckbox::_SetLabel(void *param)
375375
}
376376
else
377377
{
378-
labelStr = JNU_GetStringPlatformChars(env, label, JNI_FALSE);
378+
labelStr = JNU_GetStringPlatformChars(env, label, NULL);
379379
}
380380

381381
if (labelStr == NULL)

‎src/java.desktop/windows/native/libawt/windows/awt_Desktop.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -75,9 +75,9 @@ JNIEXPORT void JNICALL Java_sun_awt_windows_WDesktopPeer_init
7575
JNIEXPORT jstring JNICALL Java_sun_awt_windows_WDesktopPeer_ShellExecute
7676
(JNIEnv *env, jclass cls, jstring fileOrUri_j, jstring verb_j)
7777
{
78-
LPCWSTR fileOrUri_c = JNU_GetStringPlatformChars(env, fileOrUri_j, JNI_FALSE);
78+
LPCWSTR fileOrUri_c = JNU_GetStringPlatformChars(env, fileOrUri_j, NULL);
7979
CHECK_NULL_RETURN(fileOrUri_c, NULL);
80-
LPCWSTR verb_c = JNU_GetStringPlatformChars(env, verb_j, JNI_FALSE);
80+
LPCWSTR verb_c = JNU_GetStringPlatformChars(env, verb_j, NULL);
8181
if (verb_c == NULL) {
8282
JNU_ReleaseStringPlatformChars(env, fileOrUri_j, fileOrUri_c);
8383
return NULL;

‎src/java.desktop/windows/native/libawt/windows/awt_Win32GraphicsEnv.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -183,7 +183,7 @@ Java_sun_awt_Win32FontManager_registerFontWithPlatform(JNIEnv *env,
183183
jclass cl,
184184
jstring fontName)
185185
{
186-
LPTSTR file = (LPTSTR)JNU_GetStringPlatformChars(env, fontName, JNI_FALSE);
186+
LPTSTR file = (LPTSTR)JNU_GetStringPlatformChars(env, fontName, NULL);
187187
if (file) {
188188
::AddFontResourceEx(file, FR_PRIVATE, NULL);
189189
JNU_ReleaseStringPlatformChars(env, fontName, file);
@@ -203,7 +203,7 @@ Java_sun_awt_Win32FontManager_deRegisterFontWithPlatform(JNIEnv *env,
203203
jclass cl,
204204
jstring fontName)
205205
{
206-
LPTSTR file = (LPTSTR)JNU_GetStringPlatformChars(env, fontName, JNI_FALSE);
206+
LPTSTR file = (LPTSTR)JNU_GetStringPlatformChars(env, fontName, NULL);
207207
if (file) {
208208
::RemoveFontResourceEx(file, FR_PRIVATE, NULL);
209209
JNU_ReleaseStringPlatformChars(env, fontName, file);

0 commit comments

Comments
 (0)
Please sign in to comment.