@@ -1148,7 +1148,7 @@ JNI_ENTRY(ResultType, \
1148
1148
jni_Call##Result##Method(JNIEnv *env, jobject obj, jmethodID methodID, ...)) \
1149
1149
\
1150
1150
EntryProbe; \
1151
- ResultType ret = 0 ; \
1151
+ ResultType ret{}; \
1152
1152
DT_RETURN_MARK_FOR (Result, Call##Result##Method, ResultType, \
1153
1153
(const ResultType&)ret);\
1154
1154
\
@@ -1203,7 +1203,7 @@ JNI_ENTRY(ResultType, \
1203
1203
jni_Call##Result##MethodV(JNIEnv *env, jobject obj, jmethodID methodID, va_list args)) \
1204
1204
\
1205
1205
EntryProbe;\
1206
- ResultType ret = 0 ; \
1206
+ ResultType ret{}; \
1207
1207
DT_RETURN_MARK_FOR (Result, Call##Result##MethodV, ResultType, \
1208
1208
(const ResultType&)ret);\
1209
1209
\
@@ -1254,7 +1254,7 @@ DEFINE_CALLMETHODV(jdouble, Double, T_DOUBLE
1254
1254
JNI_ENTRY (ResultType, \
1255
1255
jni_Call##Result##MethodA(JNIEnv *env, jobject obj, jmethodID methodID, const jvalue *args)) \
1256
1256
EntryProbe; \
1257
- ResultType ret = 0 ; \
1257
+ ResultType ret{}; \
1258
1258
DT_RETURN_MARK_FOR (Result, Call##Result##MethodA, ResultType, \
1259
1259
(const ResultType&)ret);\
1260
1260
\
@@ -1546,7 +1546,7 @@ JNI_ENTRY(ResultType, \
1546
1546
jni_CallStatic##Result##Method(JNIEnv *env, jclass cls, jmethodID methodID, ...)) \
1547
1547
\
1548
1548
EntryProbe; \
1549
- ResultType ret = 0 ; \
1549
+ ResultType ret{}; \
1550
1550
DT_RETURN_MARK_FOR (Result, CallStatic##Result##Method, ResultType, \
1551
1551
(const ResultType&)ret);\
1552
1552
\
@@ -1601,7 +1601,7 @@ JNI_ENTRY(ResultType, \
1601
1601
jni_CallStatic##Result##MethodV(JNIEnv *env, jclass cls, jmethodID methodID, va_list args)) \
1602
1602
\
1603
1603
EntryProbe; \
1604
- ResultType ret = 0 ; \
1604
+ ResultType ret{}; \
1605
1605
DT_RETURN_MARK_FOR (Result, CallStatic##Result##MethodV, ResultType, \
1606
1606
(const ResultType&)ret);\
1607
1607
\
@@ -1657,7 +1657,7 @@ JNI_ENTRY(ResultType, \
1657
1657
jni_CallStatic##Result##MethodA(JNIEnv *env, jclass cls, jmethodID methodID, const jvalue *args)) \
1658
1658
\
1659
1659
EntryProbe; \
1660
- ResultType ret = 0 ; \
1660
+ ResultType ret{}; \
1661
1661
DT_RETURN_MARK_FOR (Result, CallStatic##Result##MethodA, ResultType, \
1662
1662
(const ResultType&)ret);\
1663
1663
\
@@ -1750,7 +1750,7 @@ DT_RETURN_MARK_DECL(GetFieldID, jfieldID
1750
1750
JNI_ENTRY (jfieldID, jni_GetFieldID(JNIEnv *env, jclass clazz,
1751
1751
const char *name, const char *sig))
1752
1752
HOTSPOT_JNI_GETFIELDID_ENTRY (env, clazz, (char *) name, (char *) sig);
1753
- jfieldID ret = 0 ;
1753
+ jfieldID ret = nullptr ;
1754
1754
DT_RETURN_MARK (GetFieldID, jfieldID, (const jfieldID&)ret);
1755
1755
1756
1756
Klass* k = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz));
@@ -3035,12 +3035,12 @@ extern "C" void* JNICALL jni_GetDirectBufferAddress(JNIEnv *env, jobject buf)
3035
3035
3036
3036
if (!directBufferSupportInitializeEnded) {
3037
3037
if (!initializeDirectBufferSupport (env, thread)) {
3038
- return 0 ;
3038
+ return nullptr ;
3039
3039
}
3040
3040
}
3041
3041
3042
3042
if ((buf != nullptr ) && (!env->IsInstanceOf (buf, directBufferClass))) {
3043
- return 0 ;
3043
+ return nullptr ;
3044
3044
}
3045
3045
3046
3046
ret = (void *)(intptr_t )env->GetLongField (buf, directBufferAddressField);
@@ -3647,8 +3647,8 @@ static jint JNI_CreateJavaVM_inner(JavaVM **vm, void **penv, void *args) {
3647
3647
}
3648
3648
3649
3649
// Creation failed. We must reset vm_created
3650
- *vm = 0 ;
3651
- *(JNIEnv**)penv = 0 ;
3650
+ *vm = nullptr ;
3651
+ *(JNIEnv**)penv = nullptr ;
3652
3652
// reset vm_created last to avoid race condition. Use OrderAccess to
3653
3653
// control both compiler and architectural-based reordering.
3654
3654
assert (vm_created == IN_PROGRESS, " must be" );
0 commit comments