Repository: hadoop Updated Branches: refs/heads/branch-2.9 a3c564b01 -> 034e8fc7c
HADOOP-15820. ZStandardDecompressor native code sets an integer field as a long. Contributed by Jason Lowe (cherry picked from commit f13e231025333ebf80b30bbdce1296cef554943b) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/034e8fc7 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/034e8fc7 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/034e8fc7 Branch: refs/heads/branch-2.9 Commit: 034e8fc7ca03d38b713c329280d8b9da73423c26 Parents: a3c564b Author: Jason Lowe <[email protected]> Authored: Fri Oct 5 09:06:02 2018 -0500 Committer: Jason Lowe <[email protected]> Committed: Fri Oct 5 09:32:57 2018 -0500 ---------------------------------------------------------------------- .../src/org/apache/hadoop/io/compress/zstd/ZStandardDecompressor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/034e8fc7/hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/zstd/ZStandardDecompressor.c ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/zstd/ZStandardDecompressor.c b/hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/zstd/ZStandardDecompressor.c index 1236756..e75a6ef 100644 --- a/hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/zstd/ZStandardDecompressor.c +++ b/hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/zstd/ZStandardDecompressor.c @@ -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); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
