summaryrefslogtreecommitdiffstats
path: root/src/H5B2int.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-01-28 02:11:39 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-01-28 02:11:39 (GMT)
commit7191f26717255667e86c86559ffc316f73f4c1bd (patch)
tree3179c22066f9880e7f09849e8a620ad398f68fa9 /src/H5B2int.c
parent2cbd7f1b3cd50d21279ef81093632cb7bf6f97ea (diff)
downloadhdf5-7191f26717255667e86c86559ffc316f73f4c1bd.zip
hdf5-7191f26717255667e86c86559ffc316f73f4c1bd.tar.gz
hdf5-7191f26717255667e86c86559ffc316f73f4c1bd.tar.bz2
[svn-r16369] Description:
Bring r16347:16367 from trunk into revise_chunks branch. Tested on: FreeBSD/32 6.3 (duty) (h5committest not required on this branch)
Diffstat (limited to 'src/H5B2int.c')
-rw-r--r--src/H5B2int.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5B2int.c b/src/H5B2int.c
index aa1fdca..b5d4048 100644
--- a/src/H5B2int.c
+++ b/src/H5B2int.c
@@ -275,7 +275,7 @@ H5B2_shared_free(void *_shared)
/* Free the array of offsets into the native key block */
if(shared->nat_off)
- H5FL_SEQ_FREE(size_t, shared->nat_off);
+ shared->nat_off = H5FL_SEQ_FREE(size_t, shared->nat_off);
/* Release the node info */
if(shared->node_info) {
@@ -292,11 +292,11 @@ H5B2_shared_free(void *_shared)
} /* end for */
/* Free the array of node info structs */
- H5FL_SEQ_FREE(H5B2_node_info_t, shared->node_info);
+ shared->node_info = H5FL_SEQ_FREE(H5B2_node_info_t, shared->node_info);
} /* end if */
/* Free the shared B-tree info itself */
- (void)H5FL_FREE(H5B2_shared_t, shared);
+ shared = H5FL_FREE(H5B2_shared_t, shared);
done:
FUNC_LEAVE_NOAPI(ret_value)