summaryrefslogtreecommitdiffstats
path: root/src/H5C.c
diff options
context:
space:
mode:
authorlrknox <lrknox>2017-01-26 03:42:20 (GMT)
committerlrknox <lrknox>2017-01-26 03:42:20 (GMT)
commit2d889608946c0e8a91bd38162ceeaf1166779921 (patch)
tree3ad53a11b6c5553ca302419c38d23929a27cbbb0 /src/H5C.c
parenta43ad4b9a4a2cd49dcc81716586e5f29ef67af77 (diff)
downloadhdf5-2d889608946c0e8a91bd38162ceeaf1166779921.zip
hdf5-2d889608946c0e8a91bd38162ceeaf1166779921.tar.gz
hdf5-2d889608946c0e8a91bd38162ceeaf1166779921.tar.bz2
Commit Vailin's fix for the h5format_convert test failure.
DAILYTEST-256 #2. Tested on emu, kituo, mayll, ostrich, and osx1011dev with previously failing test configurations.
Diffstat (limited to 'src/H5C.c')
-rw-r--r--src/H5C.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5C.c b/src/H5C.c
index 4adee6d..22cb0df 100644
--- a/src/H5C.c
+++ b/src/H5C.c
@@ -1594,6 +1594,11 @@ done:
HGOTO_ERROR(H5E_CACHE, H5E_SYSTEM, FAIL, "an extreme sanity check failed on exit.\n")
#endif /* H5C_DO_EXTREME_SANITY_CHECKS */
+ if(ret_value < 0 && entry_ptr->tag_info) {
+ if(H5C__untag_entry(cache_ptr, entry_ptr) < 0)
+ HDONE_ERROR(H5E_CACHE, H5E_CANTREMOVE, FAIL, "can't remove entry from tag list")
+ }
+
FUNC_LEAVE_NOAPI(ret_value)
} /* H5C_insert_entry() */