lkml.org 
[lkml]   [2004]   [Jun]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH] 2.6.6 memory allocation checks in mtdblock_open()
From
Date
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@ukrpost.net>

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@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 14:03    [W:1.059 / U:0.000 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site