summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt17
1 files changed, 13 insertions, 4 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index ca5af91..796a4a0 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -237,12 +237,21 @@ Bug Fixes since HDF5-1.10.1 release
(ADB - 2017/12/18, HDFFV-10307)
- - Fix H5Sencode bug when num points selected is >2^32
+ - Fix H5Sencode() bug when the number of elements selected is > 2^32
- Selected and applied coding changes implemented for 1.12
- H5Sencode to 1.10.
+ H5Sencode() incorrectly encodes dataspace selection with number of
+ elements exceeding 2^32. When decoding such selection via H5Sdecode(),
+ the number of elements in the decoded dataspace is not the same as
+ what is encoded. This problem exists for H5S_SEL_HYPER and
+ H5S_SEL_POINTS encoding.
- (HDFFV-9947, VC, 2017/11/28)
+ The cause of the problem is because the library uses 32 bits to
+ encode counts and block offsets for the selection.
+ The solution is to use the original 32 bit encodings if possible,
+ but use a different way to encode selection > 32 bits when needed.
+ See details in the RFC: H5Sencode/H5Secode Format Change.
+
+ (VC - 2017/11/28, HDFFV-9947)
- filter plugin handling in H5PL.c and H5Z.c