提交 03eb2a55 编写于 作者: J Johan Hovold 提交者: Mauro Carvalho Chehab

[media] mceusb: fix NULL-deref at probe

Make sure to check for the required out endpoint to avoid dereferencing
a NULL-pointer in mce_request_packet should a malicious device lack such
an endpoint. Note that this path is hit during probe.

Fixes: 66e89522 ("V4L/DVB: IR: add mceusb IR receiver driver")

Cc: stable <stable@vger.kernel.org>	# 2.6.36
Signed-off-by: NJohan Hovold <johan@kernel.org>
Signed-off-by: NSean Young <sean@mess.org>
Signed-off-by: NMauro Carvalho Chehab <mchehab@s-opensource.com>
上级 74c839b2
...@@ -1288,8 +1288,8 @@ static int mceusb_dev_probe(struct usb_interface *intf, ...@@ -1288,8 +1288,8 @@ static int mceusb_dev_probe(struct usb_interface *intf,
} }
} }
} }
if (ep_in == NULL) { if (!ep_in || !ep_out) {
dev_dbg(&intf->dev, "inbound and/or endpoint not found"); dev_dbg(&intf->dev, "required endpoints not found\n");
return -ENODEV; return -ENODEV;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册