diff options
-rw-r--r-- | src/H5CS.c | 3 | ||||
-rw-r--r-- | src/H5FS.c | 3 |
2 files changed, 2 insertions, 4 deletions
@@ -27,7 +27,6 @@ */ #include "H5private.h" /* Generic Functions */ #include "H5FSprivate.h" /* Private function stack routines */ -#include "H5MMprivate.h" /* Memory management functions */ #ifdef H5_HAVE_FUNCSTACK @@ -86,7 +85,7 @@ H5FS_get_stack(void) fstack = pthread_getspecific(H5TS_funcstk_key_g); if (!fstack) { /* no associated value with current thread - create one */ - fstack = (H5FS_t *)H5MM_calloc(sizeof(H5FS_t)); + fstack = (H5FS_t *)HDmalloc(sizeof(H5FS_t)); /* Don't use H5MM_malloc() here, it causes infinite recursion */ pthread_setspecific(H5TS_funcstk_key_g, (void *)fstack); } @@ -27,7 +27,6 @@ */ #include "H5private.h" /* Generic Functions */ #include "H5FSprivate.h" /* Private function stack routines */ -#include "H5MMprivate.h" /* Memory management functions */ #ifdef H5_HAVE_FUNCSTACK @@ -86,7 +85,7 @@ H5FS_get_stack(void) fstack = pthread_getspecific(H5TS_funcstk_key_g); if (!fstack) { /* no associated value with current thread - create one */ - fstack = (H5FS_t *)H5MM_calloc(sizeof(H5FS_t)); + fstack = (H5FS_t *)HDmalloc(sizeof(H5FS_t)); /* Don't use H5MM_malloc() here, it causes infinite recursion */ pthread_setspecific(H5TS_funcstk_key_g, (void *)fstack); } |