diff options
author | Quincey Koziol <koziol@koziol.gov> | 2019-08-19 23:00:05 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@koziol.gov> | 2019-08-19 23:00:05 (GMT) |
commit | df36318b5f338d469db0086151d86601236e922a (patch) | |
tree | b6c67dbf967f026ab0202baa043e2eb6fec389c7 /src/H5MF.c | |
parent | 85a56a9c4f9629bb92b4b16a1dada30ae30b5b21 (diff) | |
download | hdf5-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.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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]) { |