diff --git a/fs/omfs/inode.c b/fs/omfs/inode.c index ec58c765918365f1cb32555b745fb2503cf7253e..ba8819702c56719ae8a1a7b4596662a653a6ef0b 100644 --- a/fs/omfs/inode.c +++ b/fs/omfs/inode.c @@ -321,7 +321,7 @@ static int omfs_get_imap(struct super_block *sb) goto out; sbi->s_imap_size = array_size; - sbi->s_imap = kzalloc(array_size * sizeof(unsigned long *), GFP_KERNEL); + sbi->s_imap = kcalloc(array_size, sizeof(unsigned long *), GFP_KERNEL); if (!sbi->s_imap) goto nomem;