diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-01-05 03:47:55 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-01-05 03:47:55 (GMT) |
commit | fb1525c2b2bb606a39fa6b2d2a50cfa4d3fee640 (patch) | |
tree | 7e22be844c9eec7e15e15092a164a2ce4a82724b /src | |
parent | 63102599575c860b0f5b839e0e3ab8e5944fd1fc (diff) | |
download | hdf5-fb1525c2b2bb606a39fa6b2d2a50cfa4d3fee640.zip hdf5-fb1525c2b2bb606a39fa6b2d2a50cfa4d3fee640.tar.gz hdf5-fb1525c2b2bb606a39fa6b2d2a50cfa4d3fee640.tar.bz2 |
[svn-r28802] Description:
Correct another H5MM_free => H5MM_xfree
Tested on:
MacOSX/64 10.11.2 (amazon) w/serial & parallel
Diffstat (limited to 'src')
-rw-r--r-- | src/H5FDlog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5FDlog.c b/src/H5FDlog.c index 435ee70..4bb72ce 100644 --- a/src/H5FDlog.c +++ b/src/H5FDlog.c @@ -416,7 +416,7 @@ done: if(NULL == ret_value) if(new_fa) { if(new_fa->logfile) - new_fa->logfile = H5MM_free(new_fa->logfile); + new_fa->logfile = H5MM_xfree(new_fa->logfile); H5MM_free(new_fa); } /* end if */ @@ -445,7 +445,7 @@ H5FD_log_fapl_free(void *_fa) /* Free the fapl information */ if(fa->logfile) - fa->logfile = H5MM_free(fa->logfile); + fa->logfile = H5MM_xfree(fa->logfile); H5MM_xfree(fa); FUNC_LEAVE_NOAPI(SUCCEED) @@ -799,7 +799,7 @@ H5FD_log_close(H5FD_t *_file) } /* end if */ if(file->fa.logfile) - file->fa.logfile = H5MM_free(file->fa.logfile); + file->fa.logfile = H5MM_xfree(file->fa.logfile); /* Release the file info */ file = H5FL_FREE(H5FD_log_t, file); |