Commit 0624760c authored by Dan Carpenter's avatar Dan Carpenter Committed by Johannes Berg

mac80211: fix potential NULL dereference

Smatch complains that we could dereference skb later in the function.
It's probably unlikely, but we may as well return here and avoid it.
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
[change summary]
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent d9d8b019
...@@ -49,7 +49,7 @@ static struct sk_buff *remove_monitor_info(struct ieee80211_local *local, ...@@ -49,7 +49,7 @@ static struct sk_buff *remove_monitor_info(struct ieee80211_local *local,
/* driver bug */ /* driver bug */
WARN_ON(1); WARN_ON(1);
dev_kfree_skb(skb); dev_kfree_skb(skb);
skb = NULL; return NULL;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment