HADOOP-15820. ZStandardDecompressor native code sets an integer field as a long. Contributed by Jason Lowe
(cherry picked from commit f13e231025333ebf80b30bbdce1296cef554943b)
This commit is contained in:
parent
4bad89802b
commit
bbceae10b9
@ -145,7 +145,7 @@ JNIEXPORT void JNICALL Java_org_apache_hadoop_io_compress_zstd_ZStandardDecompre
|
||||
THROW(env, "java/lang/InternalError", dlsym_ZSTD_getErrorName(result));
|
||||
return;
|
||||
}
|
||||
(*env)->SetLongField(env, this, ZStandardDecompressor_remaining, 0);
|
||||
(*env)->SetIntField(env, this, ZStandardDecompressor_remaining, 0);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user