mirror of
https://github.com/qemu/qemu.git
synced 2024-11-25 11:53:39 +08:00
bt-sdp: Fix an excessive ; and assignment of the wrong variable
Problem-spotted-by: Blue Swirl <blauwirbel@gmail.com> Signed-off-by: Andrew Zaborowski <balrogg@gmail.com>
This commit is contained in:
parent
7b1df88f28
commit
a6e4b14388
@ -159,7 +159,7 @@ static ssize_t sdp_svc_search(struct bt_l2cap_sdp_state_s *sdp,
|
||||
|
||||
if (len < 3)
|
||||
return -SDP_INVALID_SYNTAX;
|
||||
end = (req[0] << 8) | req[1];
|
||||
max = (req[0] << 8) | req[1];
|
||||
req += 2;
|
||||
len -= 2;
|
||||
|
||||
@ -171,7 +171,7 @@ static ssize_t sdp_svc_search(struct bt_l2cap_sdp_state_s *sdp,
|
||||
} else
|
||||
start = 0;
|
||||
|
||||
if (len > 1);
|
||||
if (len > 1)
|
||||
return -SDP_INVALID_SYNTAX;
|
||||
|
||||
/* Output the results */
|
||||
|
Loading…
Reference in New Issue
Block a user