mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/alarm_not_free_when_a2dp_deinit' into 'master'
bugfix/Fixed the issue of alarm leak See merge request espressif/esp-idf!24350
This commit is contained in:
commit
d68898785a
@ -1861,8 +1861,8 @@ void bta_av_dereg_comp(tBTA_AV_DATA *p_data)
|
||||
bta_sys_remove_uuid(UUID_SERVCLASS_VIDEO_SOURCE);
|
||||
}
|
||||
|
||||
/* make sure that the timer is not active */
|
||||
bta_sys_stop_timer(&p_scb->timer);
|
||||
/* free the delay timer for AVRC CT */
|
||||
bta_sys_free_timer(&p_scb->timer);
|
||||
list_free(p_scb->a2d_list);
|
||||
p_scb->a2d_list = NULL;
|
||||
utl_freebuf((void **)&p_cb->p_scb[p_scb->hdi]);
|
||||
|
@ -461,11 +461,11 @@ void bta_ag_scb_dealloc(tBTA_AG_SCB *p_scb)
|
||||
|
||||
APPL_TRACE_DEBUG("bta_ag_scb_dealloc %d", bta_ag_scb_to_idx(p_scb));
|
||||
/* stop timers */
|
||||
bta_sys_stop_timer(&p_scb->act_timer);
|
||||
bta_sys_free_timer(&p_scb->act_timer);
|
||||
#if (BTM_WBS_INCLUDED == TRUE)
|
||||
bta_sys_stop_timer(&p_scb->cn_timer);
|
||||
bta_sys_free_timer(&p_scb->cn_timer);
|
||||
#endif
|
||||
bta_sys_stop_timer(&p_scb->colli_timer);
|
||||
bta_sys_free_timer(&p_scb->colli_timer);
|
||||
|
||||
/* initialize control block */
|
||||
memset(p_scb, 0, sizeof(tBTA_AG_SCB));
|
||||
|
Loading…
Reference in New Issue
Block a user