diff options
author | Jiri Slaby <jslaby@suse.cz> | 2011-02-28 04:34:06 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-02-28 22:24:54 -0500 |
commit | 6960f40a954619857e7095a6179eef896f297077 (patch) | |
tree | 57d7c5e0177399c5aa92bec9b1510dfcc6b2d684 | |
parent | f7d7aedfcd4e20e7dfc7356d30cc22dc0b0f493e (diff) |
USB: serial/kobil_sct, fix potential tty NULL dereference
Make sure that we check the return value of tty_port_tty_get.
Sometimes it may return NULL and we later dereference that.
The only place here is in kobil_read_int_callback, so fix it.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: Alan Cox <alan@linux.intel.com>
Cc: stable@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/usb/serial/kobil_sct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/kobil_sct.c b/drivers/usb/serial/kobil_sct.c index bd5bd8589e04..b382d9a0274d 100644 --- a/drivers/usb/serial/kobil_sct.c +++ b/drivers/usb/serial/kobil_sct.c | |||
@@ -372,7 +372,7 @@ static void kobil_read_int_callback(struct urb *urb) | |||
372 | } | 372 | } |
373 | 373 | ||
374 | tty = tty_port_tty_get(&port->port); | 374 | tty = tty_port_tty_get(&port->port); |
375 | if (urb->actual_length) { | 375 | if (tty && urb->actual_length) { |
376 | 376 | ||
377 | /* BEGIN DEBUG */ | 377 | /* BEGIN DEBUG */ |
378 | /* | 378 | /* |