summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/H5.c1
-rw-r--r--src/H5S.c2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/H5.c b/src/H5.c
index 8563545..2e05819 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -31,7 +31,6 @@
#include "H5Pprivate.h" /* Property lists */
#include "H5SLprivate.h" /* Skip lists */
#include "H5Tprivate.h" /* Datatypes */
-#include "H5TSprivate.h" /* Thread safety */
/****************/
/* Local Macros */
diff --git a/src/H5S.c b/src/H5S.c
index bc95472..f3dc48c 100644
--- a/src/H5S.c
+++ b/src/H5S.c
@@ -186,7 +186,7 @@ H5S_create(H5S_class_t type)
FUNC_ENTER_NOAPI(NULL)
/* Create a new dataspace */
- if(NULL == (new_ds = H5FL_MALLOC(H5S_t)))
+ if(NULL == (new_ds = H5FL_CALLOC(H5S_t)))
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed")
/* Initialize default dataspace state */