[JFFS2] replace kmalloc+memset with kzalloc
Replace kmalloc+memset with kzalloc Signed-off-by: Yan Burman <burman.yan@gmail.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: David Woodhouse <dwmw2@infradead.org>
This commit is contained in:
committed by
David Woodhouse
parent
db06e2a93f
commit
3d375d9e0f
@@ -128,12 +128,11 @@ int jffs2_scan_medium(struct jffs2_sb_info *c)
|
||||
}
|
||||
|
||||
if (jffs2_sum_active()) {
|
||||
s = kmalloc(sizeof(struct jffs2_summary), GFP_KERNEL);
|
||||
s = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL);
|
||||
if (!s) {
|
||||
JFFS2_WARNING("Can't allocate memory for summary\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
memset(s, 0, sizeof(struct jffs2_summary));
|
||||
}
|
||||
|
||||
for (i=0; i<c->nr_blocks; i++) {
|
||||
|
Reference in New Issue
Block a user