OWE: Fix for entry->ssid possibly NULL dereference
Pointer entry->ssid might be passed to owe_trans_ssid_match() function as argument 3 with NULL value, and it may be dereferenced there. This looks like a theoretical case that would not be reached in practice, but anyway, it is better to check entry->ssid != NULL more consistently. Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
This commit is contained in:
parent
e97d7c5a6a
commit
75d33c988f
1 changed files with 3 additions and 2 deletions
|
@ -5268,8 +5268,9 @@ struct wpa_ssid * wpa_supplicant_get_ssid(struct wpa_supplicant *wpa_s)
|
||||||
|
|
||||||
#ifdef CONFIG_OWE
|
#ifdef CONFIG_OWE
|
||||||
if (!wpas_network_disabled(wpa_s, entry) &&
|
if (!wpas_network_disabled(wpa_s, entry) &&
|
||||||
owe_trans_ssid_match(wpa_s, bssid, entry->ssid,
|
(entry->ssid &&
|
||||||
entry->ssid_len) &&
|
owe_trans_ssid_match(wpa_s, bssid, entry->ssid,
|
||||||
|
entry->ssid_len)) &&
|
||||||
(!entry->bssid_set ||
|
(!entry->bssid_set ||
|
||||||
os_memcmp(bssid, entry->bssid, ETH_ALEN) == 0))
|
os_memcmp(bssid, entry->bssid, ETH_ALEN) == 0))
|
||||||
return entry;
|
return entry;
|
||||||
|
|
Loading…
Reference in a new issue