diff options
author | Andre Eisenbach <eisenbach@google.com> | 2015-11-04 08:28:30 -0800 |
---|---|---|
committer | The Android Automerger <android-build@google.com> | 2015-11-04 13:00:21 -0800 |
commit | 903777dd5349218d115542c28639546ecccd869f (patch) | |
tree | 247859b7d5fe073c2cc8d5ee13a3d3ccdd39d312 /stack/sdp/sdp_api.c | |
parent | 1a3139b47dd62835181b042da0d8058c948e388d (diff) | |
download | android_system_bt-903777dd5349218d115542c28639546ecccd869f.tar.gz android_system_bt-903777dd5349218d115542c28639546ecccd869f.tar.bz2 android_system_bt-903777dd5349218d115542c28639546ecccd869f.zip |
Fix bug in SDP 128-bit UUID lookup
Bug: 24344122
Change-Id: I7b7ed4459c4f377d97b608bfe2e0c13aac31680e
Diffstat (limited to 'stack/sdp/sdp_api.c')
-rw-r--r-- | stack/sdp/sdp_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stack/sdp/sdp_api.c b/stack/sdp/sdp_api.c index a7370ecfa..20fdc9845 100644 --- a/stack/sdp/sdp_api.c +++ b/stack/sdp/sdp_api.c @@ -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); } } |