summaryrefslogtreecommitdiffstats
path: root/src/H5MF.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-08-04 15:22:47 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-08-04 15:22:47 (GMT)
commitdc97b9a16569e588dd6c112153b3136003b14ee1 (patch)
tree2ea651b76195b4c7ef803ae3a518e4f7a6b3daf7 /src/H5MF.c
parentf28c92bb3661f43e9e05a15b78f748eb106adc18 (diff)
parent33c0016eb63a1d7894bd708cd020ba091a9a9857 (diff)
downloadhdf5-dc97b9a16569e588dd6c112153b3136003b14ee1.zip
hdf5-dc97b9a16569e588dd6c112153b3136003b14ee1.tar.gz
hdf5-dc97b9a16569e588dd6c112153b3136003b14ee1.tar.bz2
Merge branch 'aug-develop' into aug-merge-attempt/feature/vfd_swmr
Diffstat (limited to 'src/H5MF.c')
-rw-r--r--src/H5MF.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5MF.c b/src/H5MF.c
index dbaf17c..22438d3 100644
--- a/src/H5MF.c
+++ b/src/H5MF.c
@@ -1259,10 +1259,11 @@ H5MF__xfree_inner_impl(H5F_t *f, H5FD_mem_t alloc_type, haddr_t addr, hsize_t si
/* If it's metadata, check if the space to free intersects with the file's
* metadata accumulator
*/
- if(H5FD_MEM_DRAW != alloc_type)
+ if(H5FD_MEM_DRAW != alloc_type) {
/* Check if the space to free intersects with the file's metadata accumulator */
if(H5F__accum_free(f->shared, alloc_type, addr, size) < 0)
HGOTO_ERROR(H5E_RESOURCE, H5E_CANTFREE, FAIL, "can't check free space intersection w/metadata accumulator")
+ } /* end if */
/* Check if the free space manager for the file has been initialized */
if(!f->shared->fs_man[fs_type]) {