aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Beregalov <[email protected]>2010-03-05 13:42:33 -0800
committerLinus Torvalds <[email protected]>2010-03-06 11:26:28 -0800
commit03315b59165ee2049a4b903a1b0b8bf673d701fa (patch)
tree92513448a8af5e2a0b1f228310154fea14e44c2b
parentbe1494527c4dea4db87749d08b09be23327157dc (diff)
uml: line.c: avoid NULL pointer dereference
Assign tty only if line is not NULL. [[email protected]: simplification] Signed-off-by: Alexander Beregalov <[email protected]> Cc: Jeff Dike <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--arch/um/drivers/line.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/drivers/line.c b/arch/um/drivers/line.c
index cf8a97f34518..64cda95f59ca 100644
--- a/arch/um/drivers/line.c
+++ b/arch/um/drivers/line.c
@@ -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;
}