fix an off-by-one error

SVN-Revision: 8427
owl
Felix Fietkau 2007-08-19 01:06:26 +00:00
parent 60157ca058
commit ce9fff401a
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ diff -urN linux-2.6.21.1.old/drivers/mtd/devices/block2mtd.c linux-2.6.21.1.dev/
+ if (!mtdname) + if (!mtdname)
+ mtdname = devname; + mtdname = devname;
+ +
+ dev->mtd.name = kmalloc(strlen(mtdname), GFP_KERNEL); + dev->mtd.name = kmalloc(strlen(mtdname) + 1, GFP_KERNEL);
+ +
if (!dev->mtd.name) if (!dev->mtd.name)
goto devinit_err; goto devinit_err;

View File

@ -32,7 +32,7 @@ diff -urN linux-2.6.21.1.old/drivers/mtd/devices/block2mtd.c linux-2.6.21.1.dev/
+ if (!mtdname) + if (!mtdname)
+ mtdname = devname; + mtdname = devname;
+ +
+ dev->mtd.name = kmalloc(strlen(mtdname), GFP_KERNEL); + dev->mtd.name = kmalloc(strlen(mtdname) + 1, GFP_KERNEL);
+ +
if (!dev->mtd.name) if (!dev->mtd.name)
goto devinit_err; goto devinit_err;