diff options
Diffstat (limited to 'e2fsprogs/mke2fs.c')
-rw-r--r-- | e2fsprogs/mke2fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e2fsprogs/mke2fs.c b/e2fsprogs/mke2fs.c index ea6afb92c..687f18567 100644 --- a/e2fsprogs/mke2fs.c +++ b/e2fsprogs/mke2fs.c | |||
@@ -401,7 +401,7 @@ static errcode_t zero_blocks(ext2_filsys fs, blk_t blk, int num, | |||
401 | } | 401 | } |
402 | /* Allocate the zeroizing buffer if necessary */ | 402 | /* Allocate the zeroizing buffer if necessary */ |
403 | if (!buf) { | 403 | if (!buf) { |
404 | buf = xcalloc(fs->blocksize, STRIDE_LENGTH); | 404 | buf = xzalloc(fs->blocksize * STRIDE_LENGTH); |
405 | } | 405 | } |
406 | /* OK, do the write loop */ | 406 | /* OK, do the write loop */ |
407 | next_update = 0; | 407 | next_update = 0; |