summaryrefslogtreecommitdiffstats
path: root/src/H5Fio.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2016-06-24 22:19:09 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2016-06-24 22:19:09 (GMT)
commit29cb102f121f79c2a678f036ff211a8bad91517f (patch)
treec72e468f88cc1139c395b2ddf0d87e01cabdc7ac /src/H5Fio.c
parent75aa26981b4becc6926f4100707d9614e84a041c (diff)
parentf410d5d842edfb8a3b4aea4cd72ff67cb0e5b1aa (diff)
downloadhdf5-29cb102f121f79c2a678f036ff211a8bad91517f.zip
hdf5-29cb102f121f79c2a678f036ff211a8bad91517f.tar.gz
hdf5-29cb102f121f79c2a678f036ff211a8bad91517f.tar.bz2
[svn-r30104] Fixes evict-on-close feature by propagating global
flush flag up the function call stack and not setting it during H5Dclose().
Diffstat (limited to 'src/H5Fio.c')
-rw-r--r--src/H5Fio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fio.c b/src/H5Fio.c
index b9bd354..2ccd3f3 100644
--- a/src/H5Fio.c
+++ b/src/H5Fio.c
@@ -271,7 +271,7 @@ H5F_evict_tagged_metadata(H5F_t * f, haddr_t tag, hid_t dxpl_id)
f->shared->sblock = NULL;
/* Evict the object's metadata */
- if(H5AC_evict_tagged_metadata(f, tag, dxpl_id)<0)
+ if(H5AC_evict_tagged_metadata(f, tag, TRUE, dxpl_id) < 0)
HGOTO_ERROR(H5E_CACHE, H5E_CANTEXPUNGE, FAIL, "unable to evict tagged metadata")
/* Re-read the superblock. */