IBSS RSN: peer->addr is an array so it cannot be NULL
authorJouni Malinen <jouni.malinen@atheros.com>
Thu, 14 Apr 2011 17:18:12 +0000 (20:18 +0300)
committerJouni Malinen <j@w1.fi>
Thu, 14 Apr 2011 17:18:12 +0000 (20:18 +0300)
wpa_supplicant/ibss_rsn.c

index 9789d32..0d7d568 100644 (file)
@@ -132,7 +132,7 @@ static int supp_set_key(void *ctx, enum wpa_alg alg,
                }
        }
 
-       if (is_broadcast_ether_addr(addr) && peer->addr)
+       if (is_broadcast_ether_addr(addr))
                addr = peer->addr;
        return wpa_drv_set_key(peer->ibss_rsn->wpa_s, alg, addr, key_idx,
                               set_tx, seq, seq_len, key, key_len);