[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20150408125807.30123.91282.stgit@localhost.localdomain>
Date: Wed, 08 Apr 2015 13:58:15 +0100
From: Alan <gnomes@...rguk.ukuu.org.uk>
To: netdev@...r.kernel.org, trivial@...nel.org
Subject: [PATCH] ppp_synctty: remove unneeded NULL check
Fix a random whine found by coverity. Had it been NULL it would have
showered us with oopses long before.
Signed-off-by: Alan Cox <alan@...ux.intel.com>
---
0 files changed
diff --git a/drivers/net/ppp/ppp_synctty.c b/drivers/net/ppp/ppp_synctty.c
index 925d3e2..b5592b8 100644
--- a/drivers/net/ppp/ppp_synctty.c
+++ b/drivers/net/ppp/ppp_synctty.c
@@ -549,7 +549,7 @@ ppp_sync_txmunge(struct syncppp *ap, struct sk_buff *skb)
ap->last_xmit = jiffies;
- if (skb && ap->flags & SC_LOG_OUTPKT)
+ if (ap->flags & SC_LOG_OUTPKT)
ppp_print_buffer ("send buffer", skb->data, skb->len);
return skb;
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists