From: Pádraig Brady Date: Fri, 30 Nov 2012 15:08:31 +0000 (+0000) Subject: maint: remove a redundant odd sized alloc from factor.c X-Git-Tag: v8.21~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2bf0c52d5b82e5781adb0ac1f0d77ad6cf916cd2;p=thirdparty%2Fcoreutils.git maint: remove a redundant odd sized alloc from factor.c * src/factor.c (mp_factor_init): Init the pointers with NULL, which xrealloc (or realloc) handles fine. --- diff --git a/src/factor.c b/src/factor.c index 6d1d17a4bd..90af1c4970 100644 --- a/src/factor.c +++ b/src/factor.c @@ -573,8 +573,8 @@ static void mp_factor (mpz_t, struct mp_factors *); static void mp_factor_init (struct mp_factors *factors) { - factors->p = xmalloc (1); - factors->e = xmalloc (1); + factors->p = NULL; + factors->e = NULL; factors->nfactors = 0; }