mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-04-06 17:20:42 +08:00
[svn-r28800] Description:
Correct H5MM_free => H5MM_xfree Tested on: MacOSX/64 10.11.2 (amazon) w/serial & parallel
This commit is contained in:
parent
4b90bb3317
commit
6310259957
@ -621,9 +621,9 @@ H5B2__hdr_free(H5B2_hdr_t *hdr)
|
||||
|
||||
/* Release the min & max record info, if set */
|
||||
if(hdr->min_native_rec)
|
||||
hdr->min_native_rec = H5MM_free(hdr->min_native_rec);
|
||||
hdr->min_native_rec = H5MM_xfree(hdr->min_native_rec);
|
||||
if(hdr->max_native_rec)
|
||||
hdr->max_native_rec = H5MM_free(hdr->max_native_rec);
|
||||
hdr->max_native_rec = H5MM_xfree(hdr->max_native_rec);
|
||||
|
||||
/* Free B-tree header info */
|
||||
hdr = H5FL_FREE(H5B2_hdr_t, hdr);
|
||||
|
@ -2554,13 +2554,13 @@ H5B2__remove_leaf(H5B2_hdr_t *hdr, hid_t dxpl_id, H5B2_node_ptr_t *curr_node_ptr
|
||||
if(idx == 0) {
|
||||
if(H5B2_POS_LEFT == curr_pos || H5B2_POS_ROOT == curr_pos) {
|
||||
if(hdr->min_native_rec)
|
||||
hdr->min_native_rec = H5MM_free(hdr->min_native_rec);
|
||||
hdr->min_native_rec = H5MM_xfree(hdr->min_native_rec);
|
||||
} /* end if */
|
||||
} /* end if */
|
||||
if(idx == (unsigned)(leaf->nrec - 1)) {
|
||||
if(H5B2_POS_RIGHT == curr_pos || H5B2_POS_ROOT == curr_pos) {
|
||||
if(hdr->max_native_rec)
|
||||
hdr->max_native_rec = H5MM_free(hdr->max_native_rec);
|
||||
hdr->max_native_rec = H5MM_xfree(hdr->max_native_rec);
|
||||
} /* end if */
|
||||
} /* end if */
|
||||
} /* end if */
|
||||
@ -2865,13 +2865,13 @@ H5B2__remove_leaf_by_idx(H5B2_hdr_t *hdr, hid_t dxpl_id,
|
||||
if(idx == 0) {
|
||||
if(H5B2_POS_LEFT == curr_pos || H5B2_POS_ROOT == curr_pos) {
|
||||
if(hdr->min_native_rec)
|
||||
hdr->min_native_rec = H5MM_free(hdr->min_native_rec);
|
||||
hdr->min_native_rec = H5MM_xfree(hdr->min_native_rec);
|
||||
} /* end if */
|
||||
} /* end if */
|
||||
if(idx == (unsigned)(leaf->nrec - 1)) {
|
||||
if(H5B2_POS_RIGHT == curr_pos || H5B2_POS_ROOT == curr_pos) {
|
||||
if(hdr->max_native_rec)
|
||||
hdr->max_native_rec = H5MM_free(hdr->max_native_rec);
|
||||
hdr->max_native_rec = H5MM_xfree(hdr->max_native_rec);
|
||||
} /* end if */
|
||||
} /* end if */
|
||||
} /* end if */
|
||||
|
Loading…
x
Reference in New Issue
Block a user