diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-09-06 18:54:16 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-09-06 18:54:16 (GMT) |
commit | b0d47e55f7a9274cc18458756b4e48dd8169ea43 (patch) | |
tree | 27a42b859d1772f63881b911924201fc2987f94a /src/H5HL.c | |
parent | bd346629483722e7bae94521a33df4ec7a58bf0b (diff) | |
download | hdf5-b0d47e55f7a9274cc18458756b4e48dd8169ea43.zip hdf5-b0d47e55f7a9274cc18458756b4e48dd8169ea43.tar.gz hdf5-b0d47e55f7a9274cc18458756b4e48dd8169ea43.tar.bz2 |
[svn-r7446] Purpose:
Code cleanup/bug fix
Description:
Move metadata cache calls around a bit so they protect the usage of the
metadata better.
Platforms tested:
FreeBSD 4.9 (sleipnir)
too small to need h5committest
Diffstat (limited to 'src/H5HL.c')
-rw-r--r-- | src/H5HL.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -637,6 +637,7 @@ H5HL_read(H5F_t *f, hid_t dxpl_id, haddr_t addr, size_t offset, size_t size, voi if (!buf && NULL==(buf = H5MM_malloc(size))) HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed"); HDmemcpy(buf, heap->chunk + H5HL_SIZEOF_HDR(f) + offset, size); + heap=NULL; /* Set return value */ ret_value=buf; @@ -696,6 +697,7 @@ H5HL_peek(H5F_t *f, hid_t dxpl_id, haddr_t addr, size_t offset) /* Set return value */ ret_value = heap->chunk + H5HL_SIZEOF_HDR(f) + offset; + heap=NULL; done: FUNC_LEAVE_NOAPI(ret_value); |