]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
USB: serial: fix potential NULL-dereference at probe
authorJohan Hovold <johan@kernel.org>
Fri, 21 Oct 2016 10:56:27 +0000 (12:56 +0200)
committerJiri Slaby <jslaby@suse.cz>
Tue, 22 Nov 2016 19:43:39 +0000 (20:43 +0100)
commit 126d26f66d9890a69158812a6caa248c05359daa upstream.

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: e5b1e2062e05 ("USB: serial: make minor allocation dynamic")
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
drivers/usb/serial/usb-serial.c

index 137908af7c4ca4e8cfdc922120049df87fe2bec4..4427705575c53495b92df6bcb0127a93115ac3d2 100644 (file)
@@ -1061,7 +1061,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;