* [PATCH] ISDN: hysdn, fix potential NULL dereference
@ 2010-06-22 11:41 Jiri Slaby
2010-06-27 5:12 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Jiri Slaby @ 2010-06-22 11:41 UTC (permalink / raw)
To: isdn
Cc: linux-kernel, jirislaby, Jiri Slaby, David S. Miller,
Stephen Hemminger, Patrick McHardy, netdev
Stanse found that lp is dereferenced earlier than checked for being
NULL in hysdn_rx_netpkt. Move the initialization below the test.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: Karsten Keil <isdn@linux-pingi.de>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Stephen Hemminger <shemminger@vyatta.com>
Cc: Patrick McHardy <kaber@trash.net>
Cc: netdev@vger.kernel.org
---
drivers/isdn/hysdn/hysdn_net.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/drivers/isdn/hysdn/hysdn_net.c b/drivers/isdn/hysdn/hysdn_net.c
index 72eb926..feec8d8 100644
--- a/drivers/isdn/hysdn/hysdn_net.c
+++ b/drivers/isdn/hysdn/hysdn_net.c
@@ -187,12 +187,13 @@ void
hysdn_rx_netpkt(hysdn_card * card, unsigned char *buf, unsigned short len)
{
struct net_local *lp = card->netif;
- struct net_device *dev = lp->dev;
+ struct net_device *dev;
struct sk_buff *skb;
if (!lp)
return; /* non existing device */
+ dev = lp->dev;
dev->stats.rx_bytes += len;
skb = dev_alloc_skb(len);
--
1.7.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] ISDN: hysdn, fix potential NULL dereference
2010-06-22 11:41 [PATCH] ISDN: hysdn, fix potential NULL dereference Jiri Slaby
@ 2010-06-27 5:12 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2010-06-27 5:12 UTC (permalink / raw)
To: jslaby; +Cc: isdn, linux-kernel, jirislaby, shemminger, kaber, netdev
From: Jiri Slaby <jslaby@suse.cz>
Date: Tue, 22 Jun 2010 13:41:36 +0200
> Stanse found that lp is dereferenced earlier than checked for being
> NULL in hysdn_rx_netpkt. Move the initialization below the test.
>
> Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Applied.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-06-27 5:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-22 11:41 [PATCH] ISDN: hysdn, fix potential NULL dereference Jiri Slaby
2010-06-27 5:12 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).