Merge branch 'bugfix/btdm_make_failed_due_to_macro' into 'master'
components/bt: Fix make errors due to macro usage error See merge request idf/esp-idf!5105
This commit is contained in:
commit
28e0a17e0a
1 changed files with 18 additions and 19 deletions
|
@ -216,9 +216,13 @@ void bta_hf_client_sco_co_open(UINT16 handle, UINT8 air_mode, UINT8 inout_pkt_si
|
|||
bta_hf_enc_init();
|
||||
|
||||
return;
|
||||
} else {
|
||||
return;
|
||||
// Nothing to do
|
||||
}
|
||||
|
||||
error_exit:;
|
||||
#if (HFP_DYNAMIC_MEMORY == TRUE)
|
||||
error_exit:;
|
||||
if (bta_hf_client_co_cb_ptr) {
|
||||
osi_free(bta_hf_client_co_cb_ptr);
|
||||
bta_hf_client_co_cb_ptr = NULL;
|
||||
|
@ -230,12 +234,7 @@ error_exit:;
|
|||
bta_hf_ct_plc_ptr = NULL;
|
||||
}
|
||||
#endif ///(PLC_INCLUDED == TRUE)
|
||||
|
||||
#endif /// (HFP_DYNAMIC_MEMORY == TRUE)
|
||||
} else {
|
||||
// Nothing to do
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue