mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 19:24:33 +02:00
Merge branch 'bugfix/load_access_fault_upon_auth_v5.2' into 'release/v5.2'
fix(wifi): Add a check on hostapd instance while handling an Auth frame (Backport v5.2) See merge request espressif/esp-idf!34121
This commit is contained in:
@@ -587,6 +587,9 @@ bool wpa3_hostap_auth_deinit(void)
|
|||||||
static int wpa3_hostap_handle_auth(u8 *buf, size_t len, u32 auth_transaction, u16 status, u8 *bssid)
|
static int wpa3_hostap_handle_auth(u8 *buf, size_t len, u32 auth_transaction, u16 status, u8 *bssid)
|
||||||
{
|
{
|
||||||
struct hostapd_data *hapd = (struct hostapd_data *)esp_wifi_get_hostap_private_internal();
|
struct hostapd_data *hapd = (struct hostapd_data *)esp_wifi_get_hostap_private_internal();
|
||||||
|
if (!hapd) {
|
||||||
|
return ESP_FAIL;
|
||||||
|
}
|
||||||
struct sta_info *sta = ap_get_sta(hapd, bssid);
|
struct sta_info *sta = ap_get_sta(hapd, bssid);
|
||||||
if (auth_transaction == SAE_MSG_COMMIT) {
|
if (auth_transaction == SAE_MSG_COMMIT) {
|
||||||
if (sta && sta->sae_commit_processing) {
|
if (sta && sta->sae_commit_processing) {
|
||||||
|
Reference in New Issue
Block a user