mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
Clear psk_list while freeing config_ssid instances
Previously, the main PSK entry was cleared explicitly, but psk_list could include PSKs for some P2P use cases, so clear it as well when freeing config_ssid instances. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
e886c88e95
commit
6df1973988
@ -2078,7 +2078,6 @@ void wpa_config_free_ssid(struct wpa_ssid *ssid)
|
||||
struct psk_list_entry *psk;
|
||||
|
||||
os_free(ssid->ssid);
|
||||
os_memset(ssid->psk, 0, sizeof(ssid->psk));
|
||||
str_clear_free(ssid->passphrase);
|
||||
os_free(ssid->ext_psk);
|
||||
#ifdef IEEE8021X_EAPOL
|
||||
@ -2098,9 +2097,9 @@ void wpa_config_free_ssid(struct wpa_ssid *ssid)
|
||||
while ((psk = dl_list_first(&ssid->psk_list, struct psk_list_entry,
|
||||
list))) {
|
||||
dl_list_del(&psk->list);
|
||||
os_free(psk);
|
||||
bin_clear_free(psk, sizeof(*psk));
|
||||
}
|
||||
os_free(ssid);
|
||||
bin_clear_free(ssid, sizeof(*ssid));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user