component/bt: bugfix for AVDTP state machine during disconnection in failure to handle NULL parameter

This commit is contained in:
wangmengyang 2017-07-03 17:25:44 +08:00
parent 2aad52300a
commit 8959c7de20

View file

@ -956,7 +956,11 @@ void avdt_scb_hdl_tc_close(tAVDT_SCB *p_scb, tAVDT_SCB_EVT *p_data)
/* set up hdr */
avdt_ctrl.hdr.err_code = p_scb->close_code;
avdt_ctrl.hdr.err_param = p_data->close.disc_rsn;
if (p_data) {
avdt_ctrl.hdr.err_param = p_data->close.disc_rsn;
} else {
avdt_ctrl.hdr.err_param = AVDT_DISC_RSN_NORMAL;
}
/* clear sep variables */
avdt_scb_clr_vars(p_scb, p_data);