mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix(bt/bluedroid): Set the alarm_arg to NULL after releasing to avoid double free in BTC layer
This commit is contained in:
parent
b807b6ebf3
commit
7a335421e1
@ -254,15 +254,17 @@ static void close_timeout_handler(void *arg)
|
||||
{
|
||||
btc_msg_t msg;
|
||||
bt_status_t status;
|
||||
spp_slot_t *slot = (spp_slot_t *)arg;
|
||||
|
||||
msg.sig = BTC_SIG_API_CB;
|
||||
msg.pid = BTC_PID_SPP;
|
||||
msg.act = BTA_JV_RFCOMM_CLOSE_EVT;
|
||||
|
||||
status = btc_transfer_context(&msg, arg, sizeof(tBTA_JV), NULL, NULL);
|
||||
status = btc_transfer_context(&msg, slot->alarm_arg, sizeof(tBTA_JV), NULL, NULL);
|
||||
|
||||
if (arg) {
|
||||
osi_free(arg);
|
||||
if (slot->alarm_arg) {
|
||||
osi_free(slot->alarm_arg);
|
||||
slot->alarm_arg = NULL;
|
||||
}
|
||||
|
||||
if (status != BT_STATUS_SUCCESS) {
|
||||
@ -1211,9 +1213,11 @@ void btc_spp_cb_handler(btc_msg_t *msg)
|
||||
break;
|
||||
}
|
||||
memcpy(p_arg, p_data, sizeof(tBTA_JV));
|
||||
slot->alarm_arg = (void *)p_arg;
|
||||
if ((slot->close_alarm =
|
||||
osi_alarm_new("slot", close_timeout_handler, (void *)p_arg, VFS_CLOSE_TIMEOUT)) == NULL) {
|
||||
osi_alarm_new("slot", close_timeout_handler, (void *)slot, VFS_CLOSE_TIMEOUT)) == NULL) {
|
||||
free(p_arg);
|
||||
slot->alarm_arg = NULL;
|
||||
param.close.status = ESP_SPP_NO_RESOURCE;
|
||||
osi_mutex_unlock(&spp_local_param.spp_slot_mutex);
|
||||
BTC_TRACE_ERROR("%s unable to malloc slot close_alarm!", __func__);
|
||||
@ -1221,6 +1225,7 @@ void btc_spp_cb_handler(btc_msg_t *msg)
|
||||
}
|
||||
if (osi_alarm_set(slot->close_alarm, VFS_CLOSE_TIMEOUT) != OSI_ALARM_ERR_PASS) {
|
||||
free(p_arg);
|
||||
slot->alarm_arg = NULL;
|
||||
osi_alarm_free(slot->close_alarm);
|
||||
param.close.status = ESP_SPP_BUSY;
|
||||
osi_mutex_unlock(&spp_local_param.spp_slot_mutex);
|
||||
@ -1229,7 +1234,6 @@ void btc_spp_cb_handler(btc_msg_t *msg)
|
||||
}
|
||||
BTC_TRACE_WARNING("%s slot rx data will be discard in %d milliseconds!",
|
||||
__func__, VFS_CLOSE_TIMEOUT);
|
||||
slot->alarm_arg = (void *)p_arg;
|
||||
slot->connected = false;
|
||||
need_call = false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user