From: Wayne Davison Date: Mon, 3 Sep 2007 04:19:02 +0000 (+0000) Subject: Tweaked _new_array() to handle new use_calloc parameter. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/a2dc4d687b258b688fd11dbe01a98ffb31936eb4 Tweaked _new_array() to handle new use_calloc parameter. --- diff --git a/util.c b/util.c index 656c3bf5..7ec334e2 100644 --- a/util.c +++ b/util.c @@ -1255,11 +1255,11 @@ int _Insure_trap_error(int a1, int a2, int a3, int a4, int a5, int a6) #define MALLOC_MAX 0x40000000 -void *_new_array(unsigned int size, unsigned long num) +void *_new_array(unsigned long num, unsigned int size, int use_calloc) { if (num >= MALLOC_MAX/size) return NULL; - return malloc(size * num); + return use_calloc ? calloc(num, size) : malloc(num * size); } void *_realloc_array(void *ptr, unsigned int size, unsigned long num)