summaryrefslogtreecommitdiffstats
path: root/src/H5F.c
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2010-10-15 19:16:41 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2010-10-15 19:16:41 (GMT)
commitc002883bcc008a4274433ed8e8275669c09dcfe6 (patch)
treec2290aca7bed508bd952eb29ef04fb0adc9642f2 /src/H5F.c
parent9f6fb53aa6941dbc67e40f47c8e27a12255cd123 (diff)
downloadhdf5-c002883bcc008a4274433ed8e8275669c09dcfe6.zip
hdf5-c002883bcc008a4274433ed8e8275669c09dcfe6.tar.gz
hdf5-c002883bcc008a4274433ed8e8275669c09dcfe6.tar.bz2
[svn-r19617] Purpose:
Merge accum_tests branch back to the trunk. Description: Changes consist of addition of tests for H5Faccum.c source code, as well as some fixes that address some discovered bugs in the metadata accumulator on several corner cases. Tested: h5committested
Diffstat (limited to 'src/H5F.c')
-rw-r--r--src/H5F.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5F.c b/src/H5F.c
index ebd3b78..46d9407 100644
--- a/src/H5F.c
+++ b/src/H5F.c
@@ -1048,7 +1048,7 @@ H5F_dest(H5F_t *f, hid_t dxpl_id, hbool_t flush)
} /* end if */
/* Destroy other components of the file */
- if(H5F_accum_reset(f, dxpl_id) < 0)
+ if(H5F_accum_reset(f, dxpl_id, TRUE) < 0)
/* Push error, but keep going*/
HDONE_ERROR(H5E_FILE, H5E_CANTRELEASE, FAIL, "problems closing file")
if(H5FO_dest(f) < 0)