1
0
Fork 0

uml: line.c: avoid NULL pointer dereference

Assign tty only if line is not NULL.

[akpm@linux-foundation.org: simplification]
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
Cc: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
hifive-unleashed-5.1
Alexander Beregalov 2010-03-05 13:42:33 -08:00 committed by Linus Torvalds
parent be1494527c
commit 03315b5916
1 changed files with 2 additions and 2 deletions

View File

@ -18,10 +18,10 @@ static irqreturn_t line_interrupt(int irq, void *data)
{
struct chan *chan = data;
struct line *line = chan->line;
struct tty_struct *tty = line->tty;
struct tty_struct *tty;
if (line)
chan_interrupt(&line->chan_list, &line->task, tty, irq);
chan_interrupt(&line->chan_list, &line->task, line->tty, irq);
return IRQ_HANDLED;
}