diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2018-03-09 07:25:40 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2018-03-09 07:25:40 (GMT) |
commit | 8ba788ca891f56792bbbbc5a40f9bc2e86a663b5 (patch) | |
tree | 873b157a636e770a3567b5e9d0776f7ae60f1b5a /src/H5Opkg.h | |
parent | 00d29181b51deba64a8a716309e828a0bd53aaa7 (diff) | |
download | hdf5-8ba788ca891f56792bbbbc5a40f9bc2e86a663b5.zip hdf5-8ba788ca891f56792bbbbc5a40f9bc2e86a663b5.tar.gz hdf5-8ba788ca891f56792bbbbc5a40f9bc2e86a663b5.tar.bz2 |
Fix for HDFFV-10209 VDS SWMR test failure
Free the object header when there are chksum retries.
Diffstat (limited to 'src/H5Opkg.h')
-rw-r--r-- | src/H5Opkg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Opkg.h b/src/H5Opkg.h index e970406..9392fa8 100644 --- a/src/H5Opkg.h +++ b/src/H5Opkg.h @@ -379,6 +379,7 @@ typedef struct H5O_cache_ud_t { unsigned v1_pfx_nmesgs; /* Number of messages from v1 prefix header */ size_t chunk0_size; /* Size of serialized first chunk */ H5O_t *oh; /* Partially deserialized object header, for later use */ + hbool_t free_oh; /* Whether to free the object header or not */ H5O_common_cache_ud_t common; /* Common object header cache callback info */ } H5O_cache_ud_t; |