Input: hanwang - validate number of endpoints before using them
Make sure to check the number of endpoints to avoid dereferencing a
NULL-pointer should a malicious device lack endpoints.
Fixes: bba5394ad3
("Input: add support for Hanwang tablets")
Signed-off-by: Johan Hovold <johan@kernel.org>
Cc: stable@vger.kernel.org # 2.6.37
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
5cc4a1a9f5
commit
ba340d7b83
|
@ -340,6 +340,9 @@ static int hanwang_probe(struct usb_interface *intf, const struct usb_device_id
|
||||||
int error;
|
int error;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
if (intf->cur_altsetting->desc.bNumEndpoints < 1)
|
||||||
|
return -ENODEV;
|
||||||
|
|
||||||
hanwang = kzalloc(sizeof(struct hanwang), GFP_KERNEL);
|
hanwang = kzalloc(sizeof(struct hanwang), GFP_KERNEL);
|
||||||
input_dev = input_allocate_device();
|
input_dev = input_allocate_device();
|
||||||
if (!hanwang || !input_dev) {
|
if (!hanwang || !input_dev) {
|
||||||
|
|
Loading…
Reference in New Issue