summaryrefslogtreecommitdiffstats
path: root/src/H5C.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-03-09 20:07:54 (GMT)
committerGitHub <noreply@github.com>2022-03-09 20:07:54 (GMT)
commitd5ddf61803f30e87bdfa629339fabf6fe1eb4a3c (patch)
treea706f48c739c46d1f451c6e1346457c19838bc7a /src/H5C.c
parent16f482de8f6f9a7447bf1d73702377b994b58aff (diff)
downloadhdf5-d5ddf61803f30e87bdfa629339fabf6fe1eb4a3c.zip
hdf5-d5ddf61803f30e87bdfa629339fabf6fe1eb4a3c.tar.gz
hdf5-d5ddf61803f30e87bdfa629339fabf6fe1eb4a3c.tar.bz2
Minor tweaks from VFD SWMR normalization (#1474)
Diffstat (limited to 'src/H5C.c')
-rw-r--r--src/H5C.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5C.c b/src/H5C.c
index 3868204..fa46ff2 100644
--- a/src/H5C.c
+++ b/src/H5C.c
@@ -1414,6 +1414,7 @@ H5C_insert_entry(H5F_t *f, const H5C_class_t *type, haddr_t addr, void *thing, u
entry_ptr->serialization_count = 0;
#endif /* NDEBUG */
+ /* initialize tag list fields */
entry_ptr->tl_next = NULL;
entry_ptr->tl_prev = NULL;
entry_ptr->tag_info = NULL;
@@ -7416,6 +7417,7 @@ H5C__load_entry(H5F_t *f,
entry->serialization_count = 0;
#endif /* NDEBUG */
+ /* initialize tag list fields */
entry->tl_next = NULL;
entry->tl_prev = NULL;
entry->tag_info = NULL;