]> Git Repo - linux.git/commitdiff
staging: vt6655: check ieee80211_bss_conf bssid not NULL
authorMalcolm Priestley <[email protected]>
Thu, 9 Jul 2015 16:01:24 +0000 (17:01 +0100)
committerGreg Kroah-Hartman <[email protected]>
Wed, 15 Jul 2015 02:34:57 +0000 (19:34 -0700)
Sometimes bssid can go null on failed association.

Signed-off-by: Malcolm Priestley <[email protected]>
Cc: <[email protected]> # v3.19+
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/staging/vt6655/device_main.c

index ed040fbb7df8d319ba39b61acf2009a163bf3745..b0c8e235b982164bb170b53655ccfc8d01378d6b 100644 (file)
@@ -1418,7 +1418,7 @@ static void vnt_bss_info_changed(struct ieee80211_hw *hw,
 
        priv->current_aid = conf->aid;
 
-       if (changed & BSS_CHANGED_BSSID) {
+       if (changed & BSS_CHANGED_BSSID && conf->bssid) {
                unsigned long flags;
 
                spin_lock_irqsave(&priv->lock, flags);
This page took 0.046436 seconds and 4 git commands to generate.