diff options
author | jhendersonHDF <jhenderson@hdfgroup.org> | 2024-03-05 14:23:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-05 14:23:34 (GMT) |
commit | f5f6975c2fc123a2c7f9d26cdbcda87d31ac4ea8 (patch) | |
tree | 23a7418ebec5ad433f57fa6cccdba7ee64e7f60a /release_docs/RELEASE.txt | |
parent | 60532b6c569efcf780e072824e5f9bda2d4b323e (diff) | |
download | hdf5-f5f6975c2fc123a2c7f9d26cdbcda87d31ac4ea8.zip hdf5-f5f6975c2fc123a2c7f9d26cdbcda87d31ac4ea8.tar.gz hdf5-f5f6975c2fc123a2c7f9d26cdbcda87d31ac4ea8.tar.bz2 |
Fix issue where H5Tset_fields does not account for datatype offsets (#4061)
H5Tset_fields did not account for any offset in a floating-point datatype,
causing it to fail when a datatype's precision is correctly set such that
it doesn't include the offset bits.
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r-- | release_docs/RELEASE.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 9daebcd..12f39c7 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -489,6 +489,16 @@ Bug Fixes since HDF5-1.14.0 release =================================== Library ------- + - Fixed a bug where H5Tset_fields does not account for any offset + set for a floating-point datatype when determining if values set + for spos, epos, esize, mpos and msize make sense for the datatype + + Previously, H5Tset_fields did not take datatype offsets into account + when determining if the values set make sense for the datatype. + This would cause the function to fail when the precision for a + datatype is correctly set such that the offset bits are not included. + This has now been fixed. + - Fixed H5Fget_access_plist so that it returns the file locking settings for a file |