diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-03-30 17:34:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-30 17:34:08 (GMT) |
commit | 032816c7979ba40765b6b8f8358c476fe677c88f (patch) | |
tree | dfd24f0cb221de5ddccc28a3c75f83569bc72864 | |
parent | a9cd3c6cfb1dd40072962d07d892f3a882928414 (diff) | |
download | hdf5-032816c7979ba40765b6b8f8358c476fe677c88f.zip hdf5-032816c7979ba40765b6b8f8358c476fe677c88f.tar.gz hdf5-032816c7979ba40765b6b8f8358c476fe677c88f.tar.bz2 |
Updated RELEASE.txt (#1549)
-rw-r--r-- | release_docs/RELEASE.txt | 53 |
1 files changed, 26 insertions, 27 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index e1c4f54..1eab61a 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -170,32 +170,6 @@ New Features (DER - 2021/04/29, HDFFV-11241) - - H5Pset_fapl_log() no longer crashes when passed an invalid fapl ID - - When passed an invalid fapl ID, H5Pset_fapl_log() would usually - segfault when attempting to free an uninitialized pointer in the error - handling code. This behavior is more common in release builds or - when the memory sanitization checks were not selected as a build - option. - - The pointer is now correctly initialized and the API call now - produces a normal HDF5 error when fed an invalid fapl ID. - - (DER - 2021/04/28, HDFFV-11240) - - - Fixes a segfault when H5Pset_mdc_log_options() is called multiple times - - The call incorrectly attempts to free an internal copy of the previous - log location string, which causes a segfault. This only happens - when the call is invoked multiple times on the same property list. - On the first call to a given fapl, the log location is set to NULL so - the segfault does not occur. - - The string is now handled properly and the segfault no longer occurs. - - (DER - 2021/04/27, HDFFV-11239) - - Parallel Library: ----------------- - Several improvements to parallel compression feature, including: @@ -274,7 +248,7 @@ New Features Some of the tools accepted shortened versions of the long options (ex: --datas instead of --dataset). These were implemented inconsistently, - are difficult to maintian, and occasionally block useful long option + are difficult to maintain, and occasionally block useful long option names. These partial long options have been removed from all the tools. (DER - 2021/08/03) @@ -400,6 +374,31 @@ Bug Fixes since HDF5-1.12.1 release (DER - 2021/08/12, HDFFV-11053) + - H5Pset_fapl_log() no longer crashes when passed an invalid fapl ID + + When passed an invalid fapl ID, H5Pset_fapl_log() would usually + segfault when attempting to free an uninitialized pointer in the error + handling code. This behavior is more common in release builds or + when the memory sanitization checks were not selected as a build + option. + + The pointer is now correctly initialized and the API call now + produces a normal HDF5 error when fed an invalid fapl ID. + + (DER - 2021/04/28, HDFFV-11240) + + - Fixes a segfault when H5Pset_mdc_log_options() is called multiple times + + The call incorrectly attempts to free an internal copy of the previous + log location string, which causes a segfault. This only happens + when the call is invoked multiple times on the same property list. + On the first call to a given fapl, the log location is set to NULL so + the segfault does not occur. + + The string is now handled properly and the segfault no longer occurs. + + (DER - 2021/04/27, HDFFV-11239) + Java Library ------------ - |