V4L: bttv: Prevent NULL pointer dereference in radio_open
authorJean Delvare <khali@linux-fr.org>
Fri, 10 Oct 2008 12:42:01 +0000 (08:42 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 22 Oct 2008 21:05:16 +0000 (14:05 -0700)
commit1a0afec2db3741b13bd39543822a0c110b50b133
treedeba67426438aa7e978d563d503edd68d8c22e1e
parent18f0a7902f3557fce184053e00219f59b292f7df
V4L: bttv: Prevent NULL pointer dereference in radio_open

cherry picked from commit c37396c19403e249f12626187d51e92c915f2bc9

Fix the following crash in the bttv driver:

BUG: unable to handle kernel NULL pointer dereference at 000000000000036c
IP: [<ffffffffa037860a>] radio_open+0x3a/0x170 [bttv]

This happens because radio_open assumes that all present bttv devices
have a radio function. If a bttv device without radio and one with
radio are installed on the same system, and the one without radio is
registered first, then radio_open checks for the radio device number
of a bttv device that has no radio function, and this breaks. All we
have to do to fix it is to skip bttv devices without a radio function.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/media/video/bt8xx/bttv-driver.c