mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
USB: serial: fix potential NULL-dereference at probe
commit126d26f66dupstream. Make sure we have at least one port before attempting to register a console. Currently, at least one driver binds to a "dummy" interface and requests zero ports for it. Should such an interface also lack endpoints, we get a NULL-deref during probe. Fixes:e5b1e2062e("USB: serial: make minor allocation dynamic") 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
660c04e8f1
commit
f2ecc94504
@@ -1077,7 +1077,8 @@ static int usb_serial_probe(struct usb_interface *interface,
|
||||
|
||||
serial->disconnected = 0;
|
||||
|
||||
usb_serial_console_init(serial->port[0]->minor);
|
||||
if (num_ports > 0)
|
||||
usb_serial_console_init(serial->port[0]->minor);
|
||||
exit:
|
||||
module_put(type->driver.owner);
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user