Commit 49c6b46a authored by Jelle Foks's avatar Jelle Foks Committed by Mauro Carvalho Chehab

V4L/DVB (4838): Fix cx88-blackbird null pointer

Allows 'debug=1' for cx88-blackbird module (dev needs to be valid for
dprintk). Fixes a null-pointer dereference when using debug=1.
Signed-off-by: default avatarJelle Foks <jelle@foks.8m.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 1f683cd8
...@@ -942,9 +942,10 @@ static int mpeg_open(struct inode *inode, struct file *file) ...@@ -942,9 +942,10 @@ static int mpeg_open(struct inode *inode, struct file *file)
struct cx8802_driver *drv = NULL; struct cx8802_driver *drv = NULL;
int err; int err;
dev = cx8802_get_device(inode);
dprintk( 1, "%s\n", __FUNCTION__); dprintk( 1, "%s\n", __FUNCTION__);
dev = cx8802_get_device(inode);
if (dev == NULL) if (dev == NULL)
return -ENODEV; return -ENODEV;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment