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

Commit d1e9a869 authored by Andre Eisenbach's avatar Andre Eisenbach Committed by android-build-merger
Browse files

Fix bug in SDP 128-bit UUID lookup

am: 7246d909

* commit '7246d909':
  Fix bug in SDP 128-bit UUID lookup
parents b83ebed4 7246d909
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -459,7 +459,7 @@ BOOLEAN SDP_FindServiceUUIDInRec_128bit(tSDP_DISC_REC *p_rec, tBT_UUID * p_uuid)
            {
                p_uuid->len = LEN_UUID_128;
                for (uint8_t i = 0; i != LEN_UUID_128; ++i)
                    p_uuid->uu.uuid128[i] = p_sattr->attr_value.v.array[LEN_UUID_128-i-1];
                    p_uuid->uu.uuid128[i] = p_attr->attr_value.v.array[LEN_UUID_128-i-1];
                return(TRUE);
            }
        }