diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-10-26 04:16:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-26 04:16:32 (GMT) |
commit | 6ccace572e99561adf820af686da19f9a31efee3 (patch) | |
tree | 8ae3089ddb03f0bb03c6cd2528f1eb9fc542029a /release_docs | |
parent | ebeb642fcdc3c82dec38c046948559119cd4451b (diff) | |
download | hdf5-6ccace572e99561adf820af686da19f9a31efee3.zip hdf5-6ccace572e99561adf820af686da19f9a31efee3.tar.gz hdf5-6ccace572e99561adf820af686da19f9a31efee3.tar.bz2 |
Fixed a file handle leak in the core VFD (#3779)
When opening a file with the core VFD and a file image, if the file
already exists, the file check would leak the POSIX file handle.
Fixes GitHub issue #635
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 291f72a..7266de3 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -404,6 +404,13 @@ Bug Fixes since HDF5-1.14.0 release =================================== Library ------- + - Fixed a file handle leak in the core VFD + + When opening a file with the core VFD and a file image, if the file + already exists, the file check would leak the POSIX file handle. + + Fixes GitHub issue #635 + - Fixed some issues with chunk index metadata not getting read collectively when collective metadata reads are enabled |