summaryrefslogtreecommitdiffstats
path: root/release_docs/RELEASE.txt
diff options
context:
space:
mode:
authorVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-08-23 20:06:19 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-08-23 20:06:19 (GMT)
commit021919206df7764f951037ae76ccae006b2eea99 (patch)
tree61c1332d06b3ef4b8f80ee9d872fb8ca64e64e6a /release_docs/RELEASE.txt
parent884ad149e29f7c99487af676f0bbcd88cbf2735f (diff)
downloadhdf5-021919206df7764f951037ae76ccae006b2eea99.zip
hdf5-021919206df7764f951037ae76ccae006b2eea99.tar.gz
hdf5-021919206df7764f951037ae76ccae006b2eea99.tar.bz2
Fixed the assertion failure for HDFFV-10873.
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r--release_docs/RELEASE.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index b940095..202d39d 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -326,6 +326,20 @@ Bug Fixes since HDF5-1.10.3 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