You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The type of the second parameter of GetStaticObjectField should be 'jclass' instead of 'jobject',
this can be found by specifying jvm option "-Xcheck:jni".
JNIEXPORT jint JNICALL
Java_com_hadoop_compression_lzo_LzoDecompressor_decompressBytesDirect(
JNIEnv *env, jobject this, jint decompressor
) {
.....
// Get members of LzoDecompressor
clazz = (*env)->GetStaticObjectField(env, this,
LzoDecompressor_clazz);
The text was updated successfully, but these errors were encountered:
The type of the second parameter of GetStaticObjectField should be 'jclass' instead of 'jobject',
this can be found by specifying jvm option "-Xcheck:jni".
The text was updated successfully, but these errors were encountered: