[media] ivtv: avoid going past input/audio array
As reported by smatch: drivers/media/pci/ivtv/ivtv-driver.c:832 ivtv_init_struct2() error: buffer overflow 'itv->card->video_inputs' 6 <= 6 Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
823873481b
commit
d55ebd07b6
|
@ -826,7 +826,7 @@ static void ivtv_init_struct2(struct ivtv *itv)
|
|||
IVTV_CARD_INPUT_VID_TUNER)
|
||||
break;
|
||||
}
|
||||
if (i == itv->nof_inputs)
|
||||
if (i >= itv->nof_inputs)
|
||||
i = 0;
|
||||
itv->active_input = i;
|
||||
itv->audio_input = itv->card->video_inputs[i].audio_index;
|
||||
|
|
Loading…
Reference in New Issue