summaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/550-ath9k_fix_wep_adhoc_crash.patch
blob: a71db0440bc2b676b47e2cb72f2bab6ae6b468bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- a/drivers/net/wireless/ath/ath9k/common.c
+++ b/drivers/net/wireless/ath/ath9k/common.c
@@ -319,6 +319,10 @@ int ath9k_cmn_key_config(struct ath_comm
 			idx = ath_reserve_key_cache_slot(common, key->alg);
 			break;
 		case NL80211_IFTYPE_ADHOC:
+			if (!sta) {
+				idx = key->keyidx;
+				break;
+			}
 			memcpy(gmac, sta->addr, ETH_ALEN);
 			gmac[0] |= 0x01;
 			mac = gmac;