diff options
Diffstat (limited to 'src/H5B2hdr.c')
-rw-r--r-- | src/H5B2hdr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5B2hdr.c b/src/H5B2hdr.c index b6e0b26..ab424b7 100644 --- a/src/H5B2hdr.c +++ b/src/H5B2hdr.c @@ -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); |