From 29f91cd95d7ab067e46cad06d4cf48b03aabc834 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Wed, 9 Jun 2004 14:55:47 -0500 Subject: [svn-r8639] Purpose: Code optimization Description: Call malloc() instead of calloc() for data structure that we completely initialize. Platforms tested: Solaris 2.7 (arabica) FreeBSD 4.10 (sleipnir) w/parallel --- src/H5HG.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5HG.c b/src/H5HG.c index 55f611f..caf3deb 100644 --- a/src/H5HG.c +++ b/src/H5HG.c @@ -188,7 +188,7 @@ H5HG_create (H5F_t *f, hid_t dxpl_id, size_t size) H5_CHECK_OVERFLOW(size,size_t,hsize_t); if (HADDR_UNDEF==(addr=H5MF_alloc(f, H5FD_MEM_GHEAP, dxpl_id, (hsize_t)size))) HGOTO_ERROR (H5E_HEAP, H5E_CANTINIT, NULL, "unable to allocate file space for global heap"); - if (NULL==(heap = H5FL_CALLOC (H5HG_heap_t))) + if (NULL==(heap = H5FL_MALLOC (H5HG_heap_t))) HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed"); heap->addr = addr; heap->size = size; -- cgit v0.12