summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-07-28 00:32:01 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2020-07-28 00:32:01 (GMT)
commit91f5320ff0e9579d47f5d91bcd80de40c30c166f (patch)
tree4180286f3098314a025b644f90738c9fba270023 /release_docs
parent74e09473c825610d203565e5ed9deb156256d6ea (diff)
downloadhdf5-91f5320ff0e9579d47f5d91bcd80de40c30c166f.zip
hdf5-91f5320ff0e9579d47f5d91bcd80de40c30c166f.tar.gz
hdf5-91f5320ff0e9579d47f5d91bcd80de40c30c166f.tar.bz2
Updates H5Sset_extent_none() to set H5S_NULL
The API call used to set the internal H5S_NO_CLASS value which produced errors when such a dataspace was passed to many other API calls. Fixes HDFFV-11027
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 84f339a..9dd54fa 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -951,6 +951,21 @@ Bug Fixes since HDF5-1.10.3 release
(DER - 2019/12/09, HDFFV-10945)
+ - H5Sset_extent_none() sets the dataspace class to H5S_NO_CLASS which
+ causes asserts/errors when passed to other dataspace API calls.
+
+ H5S_NO_CLASS is an internal class value that should not have been
+ exposed via a public API call.
+
+ In debug builds of the library, this can cause asserts to trip. In
+ non-debug builds, it will produce normal library errors.
+
+ The new library behavior is for H5Sset_extent_none() to convert
+ the dataspace into one of type H5S_NULL, which is better handled
+ by the library and easier for developers to reason about.
+
+ (DER - 2020/07/27, HDFFV-11027)
+
Java Library:
----------------