From: John W. Linville Date: Fri, 22 Jan 2010 17:33:09 +0000 (-0500) Subject: mac80211: avoid NULL ptr deref when using WEP X-Git-Tag: v2.6.34-rc1~233^2~49^2~202 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;ds=inline;h=e4fca007b06165900d0e44e8d5e251376819bf5d;p=safe%2Fjmp%2Flinux-2.6 mac80211: avoid NULL ptr deref when using WEP "mac80211: move control.hw_key assignment" changed an if-else into two separate if statments, but the if-else is needed to prevent dereferencing a null info->control.hw_key. This fixes avoids a lock-up during association on my machine when using WEP. Signed-off-by: John W. Linville --- diff --git a/net/mac80211/wep.c b/net/mac80211/wep.c index 0a4c641..5d745f2 100644 --- a/net/mac80211/wep.c +++ b/net/mac80211/wep.c @@ -310,9 +310,8 @@ static int wep_encrypt_skb(struct ieee80211_tx_data *tx, struct sk_buff *skb) tx->key->conf.keylen, tx->key->conf.keyidx)) return -1; - } - - if (info->control.hw_key->flags & IEEE80211_KEY_FLAG_GENERATE_IV) { + } else if (info->control.hw_key->flags & + IEEE80211_KEY_FLAG_GENERATE_IV) { if (!ieee80211_wep_add_iv(tx->local, skb, tx->key->conf.keylen, tx->key->conf.keyidx))