From: Jim Meyering Date: Tue, 22 Jul 2003 21:53:39 +0000 (+0000) Subject: (set_fields): Use xcalloc in place of xmalloc+memset. X-Git-Tag: v5.0.90~147 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9239223865dced4c8c028c0c2be47a3e5c716396;p=thirdparty%2Fcoreutils.git (set_fields): Use xcalloc in place of xmalloc+memset. --- diff --git a/src/cut.c b/src/cut.c index baa1368722..71106c2521 100644 --- a/src/cut.c +++ b/src/cut.c @@ -445,8 +445,7 @@ set_fields (const char *fieldstr) the field numbers corresponding to all finite ranges (i.e. `2-6' or `-4', but not `5-') in FIELDSTR. */ - printable_field = xmalloc ((max_range_endpoint + 1) * sizeof (int)); - memset (printable_field, 0, (max_range_endpoint + 1) * sizeof (int)); + printable_field = xcalloc ((max_range_endpoint + 1) * sizeof (int), 1); /* Set the array entries corresponding to integers in the ranges of RP. */ for (i = 0; i < n_rp; i++)