Commit 0a04fbe5 authored by Jiri Slaby's avatar Jiri Slaby Committed by Greg Kroah-Hartman

USB: serial/kobil_sct, fix potential tty NULL dereference

commit 6960f40a upstream.

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: default avatarJiri Slaby <jslaby@suse.cz>
Cc: Alan Cox <alan@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 366a91fb
......@@ -372,7 +372,7 @@ static void kobil_read_int_callback(struct urb *urb)
}
tty = tty_port_tty_get(&port->port);
if (urb->actual_length) {
if (tty && urb->actual_length) {
/* BEGIN DEBUG */
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment