HADOOP-15820. ZStandardDecompressor native code sets an integer field as a long. Contributed by Jason Lowe

(cherry picked from commit f13e231025)
This commit is contained in:
Jason Lowe 2018-10-05 09:06:02 -05:00 committed by Wei-Chiu Chuang
parent eb0147a4c7
commit 5f97c0cd76
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}