mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 10:31:46 +09:00
USB: idmouse: fix NULL-deref at probe
commitb0addd3fa6upstream. Make sure to check the number of endpoints to avoid dereferencing a NULL-pointer should a malicious device lack endpoints. Fixes:1da177e4c3("Linux-2.6.12-rc2") Signed-off-by: Johan Hovold <johan@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
21e0621e3c
commit
a4887ea588
@@ -346,6 +346,9 @@ static int idmouse_probe(struct usb_interface *interface,
|
||||
if (iface_desc->desc.bInterfaceClass != 0x0A)
|
||||
return -ENODEV;
|
||||
|
||||
if (iface_desc->desc.bNumEndpoints < 1)
|
||||
return -ENODEV;
|
||||
|
||||
/* allocate memory for our device state and initialize it */
|
||||
dev = kzalloc(sizeof(*dev), GFP_KERNEL);
|
||||
if (dev == NULL)
|
||||
|
||||
Reference in New Issue
Block a user