From: Jiri Slaby Date: Mon, 28 Feb 2011 09:34:06 +0000 (+0100) Subject: USB: serial/kobil_sct, fix potential tty NULL dereference X-Git-Tag: v2.6.39-rc1~472^2~83 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6960f40a954619857e7095a6179eef896f297077;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git 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 Cc: Alan Cox Cc: stable@kernel.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/serial/kobil_sct.c b/drivers/usb/serial/kobil_sct.c index bd5bd85..b382d9a 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) } tty = tty_port_tty_get(&port->port); - if (urb->actual_length) { + if (tty && urb->actual_length) { /* BEGIN DEBUG */ /*