diff options
author | Jim Meyering <jim@meyering.net> | 2003-07-22 21:53:39 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-07-22 21:53:39 +0000 |
commit | 9239223865dced4c8c028c0c2be47a3e5c716396 (patch) | |
tree | 99f1c26c56063f95294de26d3f40d9b8e8c0b7d5 | |
parent | 9903c3432c62d5f003455cc96656082ebfa5ce97 (diff) | |
download | coreutils-9239223865dced4c8c028c0c2be47a3e5c716396.tar.xz |
(set_fields): Use xcalloc in place of xmalloc+memset.
-rw-r--r-- | src/cut.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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++) |