USB: serial: fix potential NULL-dereference at probe
authorJohan Hovold <johan@kernel.org>
Fri, 21 Oct 2016 10:56:27 +0000 (12:56 +0200)
committerSasha Levin <alexander.levin@verizon.com>
Thu, 24 Nov 2016 01:59:49 +0000 (20:59 -0500)
commit7fbfac87fbf5b452c7c9ba3c4a566a41dca032e2
treee17d2320aa5098ff8cd76204a4c17be36f4b69e2
parent605a6960617f1b7be08dc721c559dc00a27015ad
USB: serial: fix potential NULL-dereference at probe

[ Upstream commit 126d26f66d9890a69158812a6caa248c05359daa ]

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")
Cc: stable <stable@vger.kernel.org> # 3.11
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
drivers/usb/serial/usb-serial.c