[PATCH] 2.6.6 memory allocation checks in mtdblock_open()

From: Yury Umanets
Date: Sun Jun 06 2004 - 11:14:03 EST


Fixes memory allocation check in mtdblock_open()

./linux-2.6.6-modified/drivers/mtd/mtdblock.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

Signed-off-by: Yury Umanets <torque@xxxxxxxxxxx>

diff -rupN ./linux-2.6.6/drivers/mtd/mtdblock.c
./linux-2.6.6-modified/drivers/mtd/mtdblock.c
--- ./linux-2.6.6/drivers/mtd/mtdblock.c Mon May 10 05:32:28 2004
+++ ./linux-2.6.6-modified/drivers/mtd/mtdblock.c Wed Jun 2 14:27:36
2004
@@ -275,7 +275,7 @@ static int mtdblock_open(struct mtd_blkt

/* OK, it's not open. Create cache info for it */
mtdblk = kmalloc(sizeof(struct mtdblk_dev), GFP_KERNEL);
- if (!mtdblks)
+ if (!mtdblk)
return -ENOMEM;

memset(mtdblk, 0, sizeof(*mtdblk));


--
umka

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/