diff options
Diffstat (limited to 'findutils/grep.c')
-rw-r--r-- | findutils/grep.c | 2 |
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 */ |