aboutsummaryrefslogtreecommitdiffstats
path: root/net/wireless
diff options
context:
space:
mode:
Diffstat (limited to 'net/wireless')
-rw-r--r--net/wireless/scan.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/wireless/scan.c b/net/wireless/scan.c
index 13f611469e6c..cf478c075ddc 100644
--- a/net/wireless/scan.c
+++ b/net/wireless/scan.c
@@ -540,6 +540,8 @@ struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy,
540 continue; 540 continue;
541 if (channel && bss->pub.channel != channel) 541 if (channel && bss->pub.channel != channel)
542 continue; 542 continue;
543 if (!is_valid_ether_addr(bss->pub.bssid))
544 continue;
543 /* Don't get expired BSS structs */ 545 /* Don't get expired BSS structs */
544 if (time_after(now, bss->ts + IEEE80211_SCAN_RESULT_EXPIRE) && 546 if (time_after(now, bss->ts + IEEE80211_SCAN_RESULT_EXPIRE) &&
545 !atomic_read(&bss->hold)) 547 !atomic_read(&bss->hold))