summaryrefslogtreecommitdiffstats
path: root/src/H5E.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5E.c')
-rw-r--r--src/H5E.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5E.c b/src/H5E.c
index 9f89c93..5974205 100644
--- a/src/H5E.c
+++ b/src/H5E.c
@@ -364,7 +364,7 @@ H5E_get_stack(void)
if(!estack) {
/* no associated value with current thread - create one */
- estack = (H5E_t *)H5FL_MALLOC(H5E_t);
+ estack = (H5E_t *)H5MM_calloc(sizeof(H5E_t));
HDassert(estack);
/* Set the thread-specific info */