From 9d30a5a539a84ca840ffb93895f715a5ccb129a4 Mon Sep 17 00:00:00 2001 From: Ravi kumar Veeramally Date: Tue, 21 Jan 2014 14:24:18 +0200 Subject: [PATCH] android/hidhost: Fix miscalculation of get report event notification length Event length is size of struct + data len (if any). It is miscalulated. --- android/hidhost.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/hidhost.c b/android/hidhost.c index 73c5f41ac..bb55f5e87 100644 --- a/android/hidhost.c +++ b/android/hidhost.c @@ -371,7 +371,7 @@ static void bt_hid_notify_get_report(struct hid_device *dev, uint8_t *buf, ba2str(&dev->dst, address); DBG("device %s", address); - ev_len = sizeof(*ev) + sizeof(struct hal_ev_hidhost_get_report) + 1; + ev_len = sizeof(*ev); if (!((buf[0] == (HID_MSG_DATA | HID_DATA_TYPE_INPUT)) || (buf[0] == (HID_MSG_DATA | HID_DATA_TYPE_OUTPUT)) || -- 2.47.3