Merge branch 'bugfix/fix_memory_leak_controller_deinit' into 'master'

ESP32: Fix memory leak in controller deinit function

See merge request espressif/esp-idf!15449
pull/7903/head
Jiang Jiang Jian 2021-11-11 03:36:18 +00:00
commit 3a443d523f
1 zmienionych plików z 12 dodań i 3 usunięć

Wyświetl plik

@ -1760,9 +1760,18 @@ esp_err_t esp_bt_controller_deinit(void)
esp_pm_lock_delete(s_light_sleep_pm_lock);
s_light_sleep_pm_lock = NULL;
}
esp_timer_stop(s_btdm_slp_tmr);
esp_timer_delete(s_btdm_slp_tmr);
s_btdm_slp_tmr = NULL;
if (s_pm_lock != NULL) {
esp_pm_lock_delete(s_pm_lock);
s_pm_lock = NULL;
}
if (s_btdm_slp_tmr != NULL) {
esp_timer_stop(s_btdm_slp_tmr);
esp_timer_delete(s_btdm_slp_tmr);
s_btdm_slp_tmr = NULL;
}
s_pm_lock_acquired = false;
#endif
semphr_delete_wrapper(s_wakeup_req_sem);