diff options
author | jhendersonHDF <jhenderson@hdfgroup.org> | 2023-04-26 22:57:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-26 22:57:22 (GMT) |
commit | bd7616cf98ae52e77f710a16fb4d334be3cb5ce9 (patch) | |
tree | c02bb657e6af4183154ae03a4a4af6fd5e5a83f5 /release_docs | |
parent | ca27cf94a2832bc7eb06975070319f827bcf4bbd (diff) | |
download | hdf5-bd7616cf98ae52e77f710a16fb4d334be3cb5ce9.zip hdf5-bd7616cf98ae52e77f710a16fb4d334be3cb5ce9.tar.gz hdf5-bd7616cf98ae52e77f710a16fb4d334be3cb5ce9.tar.bz2 |
Fix v1 object header gap bug in H5Ocopy (#2785)
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 773dbde..ad51ff1 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -160,6 +160,18 @@ Bug Fixes since HDF5-1.14.0 release =================================== Library ------- + - Fixed a bug in H5Ocopy that could generate invalid HDF5 files + + H5Ocopy was missing a check to determine whether the new object's + object header version is greater than version 1. Without this check, + copying of objects with object headers that are smaller than a + certain size would cause H5Ocopy to create an object header for the + new object that has a gap in the header data. According to the + HDF5 File Format Specification, this is not allowed for version + 1 of the object header format. + + Fixes GitHub issue #2653 + - Fixed H5Pget_vol_cap_flags and H5Pget_vol_id to accept H5P_DEFAULT H5Pget_vol_cap_flags and H5Pget_vol_id were updated to correctly |