Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
      }
    }