coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] maint: remove a redundant odd sized alloc from factor.c


From: Pádraig Brady
Subject: [PATCH] maint: remove a redundant odd sized alloc from factor.c
Date: Fri, 30 Nov 2012 15:10:37 +0000

* src/factor.c (mp_factor_init): Init the pointers with NULL,
which xrealloc (or realloc) handles fine.
---
 src/factor.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/factor.c b/src/factor.c
index 6d1d17a..90af1c4 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;
 }
 
-- 
1.7.6.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]