From: Fabian Frederick Date: Mon, 23 Jun 2014 16:41:23 +0000 (+0200) Subject: UBIFS: replace count*size kzalloc by kcalloc X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=86b4c14de34d19ec3fc4662761feed9918491658;p=linux-beck.git UBIFS: replace count*size kzalloc by kcalloc kcalloc manages count*sizeof overflow. Signed-off-by: Fabian Frederick Signed-off-by: Artem Bityutskiy --- diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index 3b0c2c0b389f..177dd629d88f 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c @@ -796,8 +796,8 @@ static int alloc_wbufs(struct ubifs_info *c) { int i, err; - c->jheads = kzalloc(c->jhead_cnt * sizeof(struct ubifs_jhead), - GFP_KERNEL); + c->jheads = kcalloc(c->jhead_cnt, sizeof(struct ubifs_jhead), + GFP_KERNEL); if (!c->jheads) return -ENOMEM;