diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2016-06-24 22:19:09 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2016-06-24 22:19:09 (GMT) |
commit | 29cb102f121f79c2a678f036ff211a8bad91517f (patch) | |
tree | c72e468f88cc1139c395b2ddf0d87e01cabdc7ac /src/H5G.c | |
parent | 75aa26981b4becc6926f4100707d9614e84a041c (diff) | |
parent | f410d5d842edfb8a3b4aea4cd72ff67cb0e5b1aa (diff) | |
download | hdf5-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/H5G.c')
-rw-r--r-- | src/H5G.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -722,7 +722,7 @@ H5Gclose(hid_t group_id) /* Check args */ if(NULL == H5I_object_verify(group_id,H5I_GROUP)) - HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a group") + HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a group") /* * Decrement the counter on the group atom. It will be freed if the count |