[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <200912151755.08345.strakh@ispras.ru>
Date: Tue, 15 Dec 2009 17:55:08 +0000
From: Alexander Strakh <strakh@...ras.ru>
To: Donald Becker <becker@...ld.com>, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: BUG null dereference in driver ./drivers/net/3c507.c
KERNEL_VERSION: 2.6.32
SUBJECT: null dereference aftre check
DESCRIBE:
In driver drivers/net/3c507.c in function Iirqreturn_t el16_interrupt:
1. If in line 555 dev = NULL then we goto line 556
2. In line 556 we have null dereference because pr_err called with dev->name
in third parameter.
555 if (dev == NULL) {
556 pr_err("%s: net_interrupt(): irq %d for unknown device.
\n",
557 dev->name, irq);
558 return IRQ_NONE;
559 }
Found by Linux Device Drivers Verification Project (Svace Detector)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists