Skip to content
Snippets Groups Projects
Commit a8240b87 authored by Tim Tsai's avatar Tim Tsai Committed by Gerrit Code Review
Browse files

Merge "Fix coverity scan issue: integer overflows"

parents 6a356199 c5b9dcb5
No related branches found
No related tags found
No related merge requests found
......@@ -531,7 +531,7 @@ bool bta_gattc_mark_bg_conn(tGATT_IF client_if,
p_cif_mask = &p_bg_tck->cif_mask;
*p_cif_mask = (1 << (client_if - 1));
*p_cif_mask = ((tBTA_GATTC_CIF_MASK)1 << (client_if - 1));
return true;
}
}
......
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