summaryrefslogtreecommitdiffstats
path: root/src/H5MFsection.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-08-18 18:25:49 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-08-18 18:25:49 (GMT)
commitebde7af78ab5cfacc8a55105f1de0e53ccffa5a4 (patch)
treebded46cf03fd13d3311cd959dcb9b091e7379dca /src/H5MFsection.c
parent339471fe0d38ce9527c6c6a91f9a9cfb3810bb9c (diff)
downloadhdf5-ebde7af78ab5cfacc8a55105f1de0e53ccffa5a4.zip
hdf5-ebde7af78ab5cfacc8a55105f1de0e53ccffa5a4.tar.gz
hdf5-ebde7af78ab5cfacc8a55105f1de0e53ccffa5a4.tar.bz2
[svn-r17374] Description:
Bring r17365 from trunk to 1.8 branch: Final merge of changes from sblock_mdc branch back to trunk. The superblock is now managed by the metadata cache. Tested on: FreeBSD/32 6.3 (duty) in debug mode (h5committest performed on trunk)
Diffstat (limited to 'src/H5MFsection.c')
-rw-r--r--src/H5MFsection.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5MFsection.c b/src/H5MFsection.c
index 0dc43c3..d10b6b1 100644
--- a/src/H5MFsection.c
+++ b/src/H5MFsection.c
@@ -404,8 +404,11 @@ H5MF_sect_simple_shrink(H5FS_section_info_t **_sect, void *_udata)
/* Check for shrinking file */
if(H5MF_SHRINK_EOA == udata->shrink) {
+ /* Sanity check */
+ HDassert(H5F_INTENT(udata->f) & H5F_ACC_RDWR);
+
/* Release section's space at EOA with file driver */
- if(H5FD_free(udata->f->shared->lf, udata->dxpl_id, udata->alloc_type, (*sect)->sect_info.addr, (*sect)->sect_info.size) < 0)
+ if(H5FD_free(udata->f->shared->lf, udata->dxpl_id, udata->alloc_type, udata->f, (*sect)->sect_info.addr, (*sect)->sect_info.size) < 0)
HGOTO_ERROR(H5E_RESOURCE, H5E_CANTFREE, FAIL, "driver free request failed")
} /* end if */
else {