USB: usb_wwan: fix potential NULL-deref at resume
authorJohan Hovold <jhovold@gmail.com>
Mon, 26 May 2014 17:23:17 +0000 (19:23 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 1 Jul 2014 03:01:32 +0000 (20:01 -0700)
commit0886f4e9008835a02210f30a0850ddb7297a9ece
tree1294affea69812ad507b9e55b20726c09c717429
parentca91395e1b1aa0802307dbf493347d4dea0b2063
USB: usb_wwan: fix potential NULL-deref at resume

commit 9096f1fbba916c2e052651e9de82fcfb98d4bea7 upstream.

The interrupt urb was submitted unconditionally at resume, something
which could lead to a NULL-pointer dereference in the urb completion
handler as resume may be called after the port and port data is gone.

Fix this by making sure the interrupt urb is only submitted and active
when the port is open.

Fixes: 383cedc3bb43 ("USB: serial: full autosuspend support for the
option driver")

Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/serial/usb_wwan.c