summaryrefslogtreecommitdiffstats
path: root/src/H5Fistore.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-08-14 12:18:34 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-08-14 12:18:34 (GMT)
commitf29e3e10975ee2164ca1ad1c0964108f3dc117d0 (patch)
treeaf4af98e9ba8f166f29429a5eeb9aaa0c8283ac3 /src/H5Fistore.c
parent374ad0ef30754b2a4a78c5ab3a16acd8e5c4c6fc (diff)
downloadhdf5-f29e3e10975ee2164ca1ad1c0964108f3dc117d0.zip
hdf5-f29e3e10975ee2164ca1ad1c0964108f3dc117d0.tar.gz
hdf5-f29e3e10975ee2164ca1ad1c0964108f3dc117d0.tar.bz2
[svn-r7362] Purpose:
Bug fix Description: Allow a user block to be "inserted" in front of a file (probably by writing a validly-sized userblock to a new file and then appending another HDF5 file to the new file). Platforms tested: FreeBSD 4.8 (sleipnir) h5committested
Diffstat (limited to 'src/H5Fistore.c')
-rw-r--r--src/H5Fistore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fistore.c b/src/H5Fistore.c
index fa969f0..929a3e0 100644
--- a/src/H5Fistore.c
+++ b/src/H5Fistore.c
@@ -2666,7 +2666,7 @@ H5F_istore_remove(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *_lt_key /*in,out
HGOTO_ERROR(H5E_OHDR, H5E_CANTFREE, H5B_INS_ERROR, "unable to clear sieve buffer");
/* Remove raw data chunk from file */
- H5FD_free(f->shared->lf, H5FD_MEM_DRAW, dxpl_id, addr, (hsize_t)lt_key->nbytes);
+ H5MF_xfree(f, H5FD_MEM_DRAW, dxpl_id, addr, (hsize_t)lt_key->nbytes);
/* Mark keys as unchanged */
*lt_key_changed = FALSE;