From: Brian Norris Date: Sat, 28 Feb 2015 10:23:28 +0000 (-0800) Subject: UBI: fix check for "too many bytes" X-Git-Tag: v4.14-rc1~5586^2~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=299d0c5b27346a77a0777c993372bf8777d4f2e5;p=platform%2Fkernel%2Flinux-rpi.git UBI: fix check for "too many bytes" The comparison from the previous line seems to have been erroneously (partially) copied-and-pasted onto the next. The second line should be checking req.bytes, not req.lnum. Coverity CID #139400 Cc: stable Signed-off-by: Brian Norris [rw: Fixed comparison] Signed-off-by: Richard Weinberger --- diff --git a/drivers/mtd/ubi/cdev.c b/drivers/mtd/ubi/cdev.c index d647e50..d16fccf 100644 --- a/drivers/mtd/ubi/cdev.c +++ b/drivers/mtd/ubi/cdev.c @@ -455,7 +455,7 @@ static long vol_cdev_ioctl(struct file *file, unsigned int cmd, /* Validate the request */ err = -EINVAL; if (req.lnum < 0 || req.lnum >= vol->reserved_pebs || - req.bytes < 0 || req.lnum >= vol->usable_leb_size) + req.bytes < 0 || req.bytes > vol->usable_leb_size) break; err = get_exclusive(desc);