mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 00:15:26 +07:00
[media] radio-bcm2048: fix wrong overflow check
This patch fixes an off by one check in bcm2048_set_region(). Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Pali Rohár <pali.rohar@gmail.com> Signed-off-by: Pavel Machek <pavel@ucw.cz> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Cc: stable@vger.kernel.org Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
9f6be2bc40
commit
5d60122b7e
@ -737,7 +737,7 @@ static int bcm2048_set_region(struct bcm2048_device *bdev, u8 region)
|
||||
int err;
|
||||
u32 new_frequency = 0;
|
||||
|
||||
if (region > ARRAY_SIZE(region_configs))
|
||||
if (region >= ARRAY_SIZE(region_configs))
|
||||
return -EINVAL;
|
||||
|
||||
mutex_lock(&bdev->mutex);
|
||||
|
Loading…
Reference in New Issue
Block a user