mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-10 21:07:02 +09:00
USB: serial/kobil_sct, fix potential tty NULL dereference
commit 6960f40a95 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: Jiri Slaby <jslaby@suse.cz>
Cc: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
9390d630e9
commit
691027e05a
@@ -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 */
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user