diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-07-17 19:21:33 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-07-17 19:21:33 (GMT) |
commit | 4af15717e234560a1167dfc92c15986f9cb4f123 (patch) | |
tree | 15b9a18ee0143511fb1fb5a84f7fa95bb1f5c925 /release_docs | |
parent | 67dff8dd8cfcfbb5f37a997b57a9f8f6968e6798 (diff) | |
download | hdf5-4af15717e234560a1167dfc92c15986f9cb4f123.zip hdf5-4af15717e234560a1167dfc92c15986f9cb4f123.tar.gz hdf5-4af15717e234560a1167dfc92c15986f9cb4f123.tar.bz2 |
Bring pull request #1729 from develop to 1.10:
Fix for HDFFV-10800 H5Ocopy failure:
The value for the H5F_LIBVER_V18 index in H5O_fill_ver_bounds[], the format
version bounds array for fill value message, should be version 3 not 2.
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 7070b31..f5d85cd 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -376,6 +376,19 @@ Bug Fixes since HDF5-1.10.4 release Library ------- + - Fixed an issue where copying a version 1.8 dataset between files using + H5Ocopy fails due to an incompatible fill version + + When using the HDF5 1.10.x H5Ocopy() API call to copy a version 1.8 + dataset to a file created with both high and low library bounds set to + H5F_LIBVER_V18, the H5Ocopy() call will fail with the error stack indicating + that the fill value version is out of bounds. + + This was fixed by changing the fill value message version to H5O_FILL_VERSION_3 + (from H5O_FILL_VERSION_2) for H5F_LIBVER_V18. + + (VC - 2019/6/14, HDFFV-10800) + - Fixed a bug that would cause an error or cause fill values to be incorrectly read from a chunked dataset using the "single chunk" index if the data was held in cache and there was no data on disk. |