diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-01-03 01:03:08 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-01-03 01:03:08 (GMT) |
commit | d4f3d93b8d9188548407453e10df12dc9ba0480f (patch) | |
tree | 97b26194d723abe4db0b866d082526e280e8b4e4 /src/H5Eint.c | |
parent | 42bf0e2136a60a9dc18a2a2a5fb029fa5a0d6562 (diff) | |
download | hdf5-d4f3d93b8d9188548407453e10df12dc9ba0480f.zip hdf5-d4f3d93b8d9188548407453e10df12dc9ba0480f.tar.gz hdf5-d4f3d93b8d9188548407453e10df12dc9ba0480f.tar.bz2 |
[svn-r28769] Description:
More memory cleanups and leak elimination.
Tested on:
MacOSX/64 10.11.2 (amazon) w/serial & parallel
(h5committest forthcoming)
Diffstat (limited to 'src/H5Eint.c')
-rw-r--r-- | src/H5Eint.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Eint.c b/src/H5Eint.c index 6e84a09..6ed405f 100644 --- a/src/H5Eint.c +++ b/src/H5Eint.c @@ -743,8 +743,13 @@ H5E_printf_stack(H5E_t *estack, const char *file, const char *func, unsigned lin done: if(va_started) va_end(ap); +#ifdef H5_HAVE_VASPRINTF + if(tmp) + HDfree(tmp); +#else /* H5_HAVE_VASPRINTF */ if(tmp) H5MM_xfree(tmp); +#endif /* H5_HAVE_VASPRINTF */ FUNC_LEAVE_NOAPI(ret_value) } /* end H5E_printf_stack() */ |