summaryrefslogtreecommitdiffstats
path: root/src/H5Distore.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-08-14 12:22:01 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-08-14 12:22:01 (GMT)
commite9f6bf020abe8c3ee01c5f5858bad35f8f67ba3e (patch)
treed8e80db65c23b12827508ccc6c3d8101edd977da /src/H5Distore.c
parentf4c720276227ba5c17097b9e36740bbef0fd1536 (diff)
downloadhdf5-e9f6bf020abe8c3ee01c5f5858bad35f8f67ba3e.zip
hdf5-e9f6bf020abe8c3ee01c5f5858bad35f8f67ba3e.tar.gz
hdf5-e9f6bf020abe8c3ee01c5f5858bad35f8f67ba3e.tar.bz2
[svn-r7363] 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/H5Distore.c')
-rw-r--r--src/H5Distore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Distore.c b/src/H5Distore.c
index acb871d..913278a 100644
--- a/src/H5Distore.c
+++ b/src/H5Distore.c
@@ -2679,7 +2679,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;