summaryrefslogtreecommitdiffstats
path: root/src/H5MF.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2019-08-19 23:00:05 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2019-08-19 23:00:05 (GMT)
commitdf36318b5f338d469db0086151d86601236e922a (patch)
treeb6c67dbf967f026ab0202baa043e2eb6fec389c7 /src/H5MF.c
parent85a56a9c4f9629bb92b4b16a1dada30ae30b5b21 (diff)
downloadhdf5-df36318b5f338d469db0086151d86601236e922a.zip
hdf5-df36318b5f338d469db0086151d86601236e922a.tar.gz
hdf5-df36318b5f338d469db0086151d86601236e922a.tar.bz2
Rest of changes for 'top' file pointer to 'shared' file pointer for H5F__accum
routines.
Diffstat (limited to 'src/H5MF.c')
-rw-r--r--src/H5MF.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/H5MF.c b/src/H5MF.c
index 3d9ddb0..e91fa14 100644
--- a/src/H5MF.c
+++ b/src/H5MF.c
@@ -1133,11 +1133,10 @@ HDfprintf(stderr, "%s: Entering - alloc_type = %u, addr = %a, size = %Hu\n", FUN
/* 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, alloc_type, addr, size) < 0)
+ 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]) {