mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
UBI: fix check for "too many bytes"
commit 299d0c5b27346a77a0777c993372bf8777d4f2e5 upstream. 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 Signed-off-by: Brian Norris <computersforpeace@gmail.com> [rw: Fixed comparison] Signed-off-by: Richard Weinberger <richard@nod.at> Signed-off-by: Zefan Li <lizefan@huawei.com>
This commit is contained in:
parent
0513688a95
commit
89873945d5
1 changed files with 1 additions and 1 deletions
|
@ -475,7 +475,7 @@ static long vol_cdev_ioctl(struct file *file, unsigned int cmd,
|
||||||
/* Validate the request */
|
/* Validate the request */
|
||||||
err = -EINVAL;
|
err = -EINVAL;
|
||||||
if (req.lnum < 0 || req.lnum >= vol->reserved_pebs ||
|
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;
|
break;
|
||||||
if (req.dtype != UBI_LONGTERM && req.dtype != UBI_SHORTTERM &&
|
if (req.dtype != UBI_LONGTERM && req.dtype != UBI_SHORTTERM &&
|
||||||
req.dtype != UBI_UNKNOWN)
|
req.dtype != UBI_UNKNOWN)
|
||||||
|
|
Loading…
Reference in a new issue