Skip to content
Snippets Groups Projects
Commit bb5c0f06 authored by Chris Manton's avatar Chris Manton
Browse files

Streamline stack/btm/btm_ble_addr::btm_ble_resolve_random_addr

Toward readable code

Bug: 163134718
Tag: #refactor
Test: compile & verify basic functions working

Change-Id: Ifc5c988e6a5dd8540c5465639022a355ee9efcbf
parent a9662bac
No related branches found
No related tags found
No related merge requests found
......@@ -206,17 +206,10 @@ static bool btm_ble_match_random_bda(void* data, void* context) {
* matched to.
*/
tBTM_SEC_DEV_REC* btm_ble_resolve_random_addr(const RawAddress& random_bda) {
/* start to resolve random address */
/* check for next security record */
list_node_t* n = list_foreach(btm_cb.sec_dev_rec, btm_ble_match_random_bda,
(void*)&random_bda);
tBTM_SEC_DEV_REC* p_dev_rec = nullptr;
if (n != nullptr) p_dev_rec = static_cast<tBTM_SEC_DEV_REC*>(list_node(n));
BTM_TRACE_EVENT("%s: %sresolved", __func__,
(p_dev_rec == nullptr ? "not " : ""));
return p_dev_rec;
return (n == nullptr) ? (nullptr)
: (static_cast<tBTM_SEC_DEV_REC*>(list_node(n)));
}
/*******************************************************************************
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment