From: Luiz Augusto von Dentz Date: Fri, 20 May 2022 23:51:38 +0000 (-0700) Subject: monitor/att: Fix parsing of Notify Mutiple X-Git-Tag: accepted/tizen/unified/20230608.164325~235 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d4e832480a22e0d3a2ef7ccd3faa06ba6e19263;p=platform%2Fupstream%2Fbluez.git monitor/att: Fix parsing of Notify Mutiple Notify Multiple was parsing handle multiple times causing the length to be assumed to be a handle. Signed-off-by: Manika Shrivastava Signed-off-by: Ayush Garg --- diff --git a/monitor/att.c b/monitor/att.c index d0e44b2..c7e1d79 100644 --- a/monitor/att.c +++ b/monitor/att.c @@ -791,8 +791,6 @@ static void att_multiple_vl_rsp(const struct l2cap_frame *frame) if (!l2cap_frame_get_le16(f, &handle)) return; - print_handle(frame, get_le16(frame->data), true); - if (!l2cap_frame_get_le16(f, &len)) return;