summaryrefslogtreecommitdiff
path: root/profiles/audio/avrcp.c
diff options
context:
space:
mode:
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>2014-01-30 18:12:55 +0200
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-02-11 19:21:09 +0200
commitbc13c6b63d5a298380d55b4d7ef0fb66d5777084 (patch)
treec9e5a29096ca410b253bbf4be48e5fb87a238407 /profiles/audio/avrcp.c
parent1ee30fa6ef32e3c88bb7f6e6b46b0111b819ac5f (diff)
downloadbluez-bc13c6b63d5a298380d55b4d7ef0fb66d5777084.tar.gz
avrcp: Fix using incorrect buffer for SetVolume
The command requires one parameter.
Diffstat (limited to 'profiles/audio/avrcp.c')
-rw-r--r--profiles/audio/avrcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/profiles/audio/avrcp.c b/profiles/audio/avrcp.c
index 43ae85ae2..d900ba73d 100644
--- a/profiles/audio/avrcp.c
+++ b/profiles/audio/avrcp.c
@@ -3723,7 +3723,7 @@ int avrcp_set_volume(struct btd_device *dev, uint8_t volume)
{
struct avrcp_server *server;
struct avrcp *session;
- uint8_t buf[AVRCP_HEADER_LENGTH + 2];
+ uint8_t buf[AVRCP_HEADER_LENGTH + 1];
struct avrcp_header *pdu = (void *) buf;
server = find_server(servers, device_get_adapter(dev));