system/bt
Revisão | 5edd605227af9a1b9eedf4fd9f02373a47fd49fb (tree) |
---|---|
Hora | 2019-11-26 10:05:40 |
Autor | Zongheng Wang <wangzongheng@goog...> |
Commiter | Zongheng Wang |
SDP: add return after SDP disconnection
A return is needed after sdp_disconnect(). It is the logic
expected and it prevents the use of p_ccb after it's freed.
Bug: 144177780
Bug: 117105007
Test: manual test
Change-Id: I7a64382b36adca37a8ff0c7e361d89ecdc8f3b55
(cherry picked from commit 30efc8c90a846460359a489e17e1461c725958b3)
@@ -469,6 +469,7 @@ static void process_service_attr_rsp(tCONN_CB* p_ccb, uint8_t* p_reply, | ||
469 | 469 | if (!sdp_copy_raw_data(p_ccb, false)) { |
470 | 470 | SDP_TRACE_ERROR("sdp_copy_raw_data failed"); |
471 | 471 | sdp_disconnect(p_ccb, SDP_ILLEGAL_PARAMETER); |
472 | + return; | |
472 | 473 | } |
473 | 474 | |
474 | 475 | #endif |
@@ -698,6 +699,7 @@ static void process_service_search_attr_rsp(tCONN_CB* p_ccb, uint8_t* p_reply, | ||
698 | 699 | if (!sdp_copy_raw_data(p_ccb, true)) { |
699 | 700 | SDP_TRACE_ERROR("sdp_copy_raw_data failed"); |
700 | 701 | sdp_disconnect(p_ccb, SDP_ILLEGAL_PARAMETER); |
702 | + return; | |
701 | 703 | } |
702 | 704 | #endif |
703 | 705 |