diff options
author | Jordan Henderson <jhenderson@hdfgroup.org> | 2019-04-30 20:28:30 (GMT) |
---|---|---|
committer | Jordan Henderson <jhenderson@hdfgroup.org> | 2019-04-30 20:32:37 (GMT) |
commit | 0a73ce19a4e7f57fe1bb06ca5be8d4697fe079aa (patch) | |
tree | 815a096445e72e21b3f937783906b306a57bac5e | |
parent | 206276d6f4843d2506240513ad1a11a5a8a36735 (diff) | |
download | hdf5-0a73ce19a4e7f57fe1bb06ca5be8d4697fe079aa.zip hdf5-0a73ce19a4e7f57fe1bb06ca5be8d4697fe079aa.tar.gz hdf5-0a73ce19a4e7f57fe1bb06ca5be8d4697fe079aa.tar.bz2 |
Fix Java JUnit-TestH5P failure on 32-bit arch
-rw-r--r-- | java/src/jni/h5pFCPLImp.c | 2 | ||||
-rw-r--r-- | release_docs/RELEASE.txt | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/java/src/jni/h5pFCPLImp.c b/java/src/jni/h5pFCPLImp.c index 9c82ba6..2160496 100644 --- a/java/src/jni/h5pFCPLImp.c +++ b/java/src/jni/h5pFCPLImp.c @@ -201,7 +201,7 @@ Java_hdf_hdf5lib_H5_H5Pget_1sym_1k done: if (theArray) - UNPIN_LONG_ARRAY(ENVONLY, size, theArray, (status < 0) ? JNI_ABORT : 0); + UNPIN_INT_ARRAY(ENVONLY, size, theArray, (status < 0) ? JNI_ABORT : 0); return (jint)status; } /* end Java_hdf_hdf5lib_H5_H5Pget_1sym_1k */ diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index db0629c..30e3ed9 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -197,6 +197,10 @@ New Features Java Library: ---------------- + - Fix a failure in JUnit-TestH5P on 32-bit architectures + + (JTH - 2019/04/30) + - Duplicate the data read/write functions of Datasets for Attributes. Region references could not be displayed for attributes as they could |