diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2019-08-26 17:02:31 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-08-26 22:49:12 (GMT) |
commit | 9c3e331ba31fdaea98354a05554beb8bdcd2e6fc (patch) | |
tree | da458a2fc68652d14919c18dcd3721ae8b400b1a /release_docs | |
parent | 4a3a12c4ba968b0b3781f5b69e3a2c41a3ed74ca (diff) | |
download | hdf5-9c3e331ba31fdaea98354a05554beb8bdcd2e6fc.zip hdf5-9c3e331ba31fdaea98354a05554beb8bdcd2e6fc.tar.gz hdf5-9c3e331ba31fdaea98354a05554beb8bdcd2e6fc.tar.bz2 |
Merge pull request #1892 in HDFFV/hdf5 from ~VCHOI/my_third_fork:bugfix/HDFFV-10873-assertion-v-oh--nmesgs-failed to develop
* commit '021919206df7764f951037ae76ccae006b2eea99':
Fixed the assertion failure for HDFFV-10873.
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 3bcab21..e5f719c 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -170,6 +170,20 @@ Bug Fixes since HDF5-1.10.5 release Library ------- + - Fixed a bug caused by bad tag value when condensing object header + messages + + There was an assertion failure when moving meessages from running a + user test program with library release hdf5.1.10.4. It was because + the tag value (object header's address) was not set up when entering + the library routine H5O__chunk_update_idx(), which will eventually + verifies the metadata tag value when protecting the object header. + + The problem was fixed by replacing FUNC_ENTER_PACKAGE in H5O__chunk_update_idx() + with FUNC_ENTER_PACKAGE_TAG(oh->cache_info.addr) to set up the metadata tag. + + (VC - 2019/08/23, HDFFV-10873) + - Fixed the test failure from test_metadata_read_retry_info() in test/swmr.c |