mirror of
https://github.com/espressif/esp-idf
synced 2025-04-03 05:10:11 -04:00
fix(bt/bluedroid): disconnect SDP connection on receiving incorrect response
This commit is contained in:
parent
4143156926
commit
fddec5d90e
@ -453,7 +453,7 @@ static void process_service_attr_rsp (tCONN_CB *p_ccb, UINT8 *p_reply)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Now, ask for the next handle. Re-use the buffer we just got. */
|
/* Now, ask for the next handle. Reuse the buffer we just got. */
|
||||||
if (p_ccb->cur_handle < p_ccb->num_handles) {
|
if (p_ccb->cur_handle < p_ccb->num_handles) {
|
||||||
BT_HDR *p_msg = (BT_HDR *) osi_malloc(SDP_DATA_BUF_SIZE);
|
BT_HDR *p_msg = (BT_HDR *) osi_malloc(SDP_DATA_BUF_SIZE);
|
||||||
UINT8 *p;
|
UINT8 *p;
|
||||||
@ -669,6 +669,7 @@ static void process_service_search_attr_rsp (tCONN_CB *p_ccb, UINT8 *p_reply)
|
|||||||
|
|
||||||
if ((type >> 3) != DATA_ELE_SEQ_DESC_TYPE) {
|
if ((type >> 3) != DATA_ELE_SEQ_DESC_TYPE) {
|
||||||
SDP_TRACE_WARNING ("SDP - Wrong type: 0x%02x in attr_rsp\n", type);
|
SDP_TRACE_WARNING ("SDP - Wrong type: 0x%02x in attr_rsp\n", type);
|
||||||
|
sdp_disconnect (p_ccb, SDP_ILLEGAL_PARAMETER);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
p = sdpu_get_len_from_type (p, type, &seq_len);
|
p = sdpu_get_len_from_type (p, type, &seq_len);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user