[PATCH] check for failed kmalloc in inftlmount.c
The INFTL mount code contains a kmalloc() followed by a memset() without handling a possible memory allocation failure. Signed-off-by: <panagiotis.issaris@mech.kuleuven.ac.be> Signed-off-by: Greg Ungerer <gerg@uclinux.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
3aec6fe2a2
commit
8766af935f
@@ -574,6 +574,12 @@ int INFTL_mount(struct INFTLrecord *s)
|
|||||||
|
|
||||||
/* Temporary buffer to store ANAC numbers. */
|
/* Temporary buffer to store ANAC numbers. */
|
||||||
ANACtable = kmalloc(s->nb_blocks * sizeof(u8), GFP_KERNEL);
|
ANACtable = kmalloc(s->nb_blocks * sizeof(u8), GFP_KERNEL);
|
||||||
|
if (!ANACtable) {
|
||||||
|
printk(KERN_WARNING "INFTL: allocation of ANACtable "
|
||||||
|
"failed (%zd bytes)\n",
|
||||||
|
s->nb_blocks * sizeof(u8));
|
||||||
|
return -ENOMEM;
|
||||||
|
}
|
||||||
memset(ANACtable, 0, s->nb_blocks);
|
memset(ANACtable, 0, s->nb_blocks);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user