diff options
author | glennsong09 <43005495+glennsong09@users.noreply.github.com> | 2023-04-30 20:09:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-30 20:09:41 (GMT) |
commit | e7f9e24d0a9c61bbd7c685054ef83bc4f832e938 (patch) | |
tree | 1019d65da0d10351aa67256b6d60f262e1fb445a /release_docs | |
parent | 30d3b1e48e55c15217d6a400b3ac8c927d5003d3 (diff) | |
download | hdf5-e7f9e24d0a9c61bbd7c685054ef83bc4f832e938.zip hdf5-e7f9e24d0a9c61bbd7c685054ef83bc4f832e938.tar.gz hdf5-e7f9e24d0a9c61bbd7c685054ef83bc4f832e938.tar.bz2 |
Clean up memory allocated when reading messages in H5Dlayout on error (#2811)
Diffstat (limited to 'release_docs')
-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 1e0af89..5856d81 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -123,6 +123,16 @@ New Features Java Library: ------------- + - Fixed memory leaks that could occur when reading a dataset from a + malformed file + + When attempting to read layout, pline, and efl information for a + dataset, memory leaks could occur if attempting to read pline/efl + information threw an error, which is due to the memory that was + allocated for pline and efl not being properly cleaned up on error. + + Fixes Github issue #2602 + - HDF5GroupInfo class has been deprecated. This class assumes that an object can contain four values which uniquely identify an |