mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/wifi_netif_on_off_cycle_race_v4.3' into 'release/v4.3'
wifi: Fix race conditon invoking invalid callback on deinit (v4.3) See merge request espressif/esp-idf!16622
This commit is contained in:
commit
40c0c33ae0
@ -109,6 +109,11 @@ esp_err_t esp_wifi_deinit(void)
|
||||
return ESP_ERR_WIFI_NOT_STOPPED;
|
||||
}
|
||||
|
||||
if (esp_wifi_internal_reg_rxcb(WIFI_IF_STA, NULL) != ESP_OK ||
|
||||
esp_wifi_internal_reg_rxcb(WIFI_IF_AP, NULL) != ESP_OK) {
|
||||
ESP_LOGW(TAG, "Failed to unregister Rx callbacks");
|
||||
}
|
||||
|
||||
esp_supplicant_deinit();
|
||||
err = esp_wifi_deinit_internal();
|
||||
if (err != ESP_OK) {
|
||||
|
@ -89,6 +89,11 @@ static esp_err_t wifi_driver_start(esp_netif_t * esp_netif, void * args)
|
||||
|
||||
void esp_wifi_destroy_if_driver(wifi_netif_driver_t h)
|
||||
{
|
||||
if (h) {
|
||||
esp_wifi_internal_reg_rxcb(h->wifi_if, NULL); // ignore the potential error
|
||||
// as the wifi might have been already uninitialized
|
||||
s_wifi_netifs[h->wifi_if] = NULL;
|
||||
}
|
||||
free(h);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user