aboutsummaryrefslogtreecommitdiff
path: root/findutils/grep.c
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-08-03 20:07:35 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-08-03 20:07:35 +0000
commite5765408936171c2e0c37c4eaca8e1a187ef4235 (patch)
tree2d31e921a759c769f339055c9946205fabef5cbf /findutils/grep.c
parent2265911dfe0141d98022f3054f4af2c7976e0921 (diff)
downloadbusybox-w32-e5765408936171c2e0c37c4eaca8e1a187ef4235.tar.gz
busybox-w32-e5765408936171c2e0c37c4eaca8e1a187ef4235.tar.bz2
busybox-w32-e5765408936171c2e0c37c4eaca8e1a187ef4235.zip
Remove xcalloc() and convert its callers to xzalloc(). About half of them
were using "1" as one of the arguments anyway, and as for the rest a multiply and a push isn't noticeably bigger than pushing two arguments on the stack. git-svn-id: svn://busybox.net/trunk/busybox@15771 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'findutils/grep.c')
-rw-r--r--findutils/grep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/grep.c b/findutils/grep.c
index b53bf490a..c2c4e7095 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -321,7 +321,7 @@ int grep_main(int argc, char **argv)
321 lines_before = 0; 321 lines_before = 0;
322 lines_after = 0; 322 lines_after = 0;
323 } else if(lines_before > 0) 323 } else if(lines_before > 0)
324 before_buf = (char **)xcalloc(lines_before, sizeof(char *)); 324 before_buf = (char **)xzalloc(lines_before * sizeof(char *));
325 } 325 }
326#else 326#else
327 /* with auto sanity checks */ 327 /* with auto sanity checks */