mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 18:30:54 +07:00
V4L/DVB (8605): gspca: Fix of gspca_zc3xx oops - 2.6.27-rc1
Bad mini/max check in setting control values (the gamma in zc3xx could be set to null). Signed-off-by: Rabin Vincent <rabin@rab.in> Signed-off-by: Jean-Francois Moine <moinejf@free.fr> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
cebf3b67f7
commit
fcf5cb2406
@ -904,7 +904,7 @@ static int vidioc_s_ctrl(struct file *file, void *priv,
|
||||
if (ctrl->id != ctrls->qctrl.id)
|
||||
continue;
|
||||
if (ctrl->value < ctrls->qctrl.minimum
|
||||
&& ctrl->value > ctrls->qctrl.maximum)
|
||||
|| ctrl->value > ctrls->qctrl.maximum)
|
||||
return -ERANGE;
|
||||
PDEBUG(D_CONF, "set ctrl [%08x] = %d", ctrl->id, ctrl->value);
|
||||
if (mutex_lock_interruptible(&gspca_dev->usb_lock))
|
||||
|
Loading…
Reference in New Issue
Block a user