* [PATCH] 2.6.6 memory allocation checks in mtdblock_open()
@ 2004-06-06 16:13 Yury Umanets
0 siblings, 0 replies; only message in thread
From: Yury Umanets @ 2004-06-06 16:13 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-kernel
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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-06-06 16:12 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-06-06 16:13 [PATCH] 2.6.6 memory allocation checks in mtdblock_open() Yury Umanets
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox