aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/drivers
diff options
context:
space:
mode:
authorAlexander Beregalov <a.beregalov@gmail.com>2010-03-05 16:42:33 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2010-03-06 14:26:28 -0500
commit03315b59165ee2049a4b903a1b0b8bf673d701fa (patch)
tree92513448a8af5e2a0b1f228310154fea14e44c2b /arch/um/drivers
parentbe1494527c4dea4db87749d08b09be23327157dc (diff)
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>
Diffstat (limited to 'arch/um/drivers')
-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)
18{ 18{
19 struct chan *chan = data; 19 struct chan *chan = data;
20 struct line *line = chan->line; 20 struct line *line = chan->line;
21 struct tty_struct *tty = line->tty; 21 struct tty_struct *tty;
22 22
23 if (line) 23 if (line)
24 chan_interrupt(&line->chan_list, &line->task, tty, irq); 24 chan_interrupt(&line->chan_list, &line->task, line->tty, irq);
25 return IRQ_HANDLED; 25 return IRQ_HANDLED;
26} 26}
27 27