mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
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>
This commit is contained in:
parent
be1494527c
commit
03315b5916
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user