From 7ce070130d4bf2f98566c7023dc84c7a61893701 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Wed, 16 Nov 2011 17:07:12 -0800 Subject: [PATCH] src/aubio_priv.h: use calloc instead of malloc --- src/aubio_priv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/aubio_priv.h b/src/aubio_priv.h index 0f12904a..662536fc 100644 --- a/src/aubio_priv.h +++ b/src/aubio_priv.h @@ -81,8 +81,8 @@ /* Memory management */ #define AUBIO_MALLOC(_n) malloc(_n) #define AUBIO_REALLOC(_p,_n) realloc(_p,_n) -#define AUBIO_NEW(_t) (_t*)malloc(sizeof(_t)) -#define AUBIO_ARRAY(_t,_n) (_t*)malloc((_n)*sizeof(_t)) +#define AUBIO_NEW(_t) (_t*)calloc(sizeof(_t), 1) +#define AUBIO_ARRAY(_t,_n) (_t*)calloc((_n)*sizeof(_t), 1) #define AUBIO_MEMCPY(_dst,_src,_n) memcpy(_dst,_src,_n) #define AUBIO_MEMSET(_dst,_src,_t) memset(_dst,_src,_t) #define AUBIO_FREE(_p) free(_p) -- 2.26.2