From 7d4e832480a22e0d3a2ef7ccd3faa06ba6e19263 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Fri, 20 May 2022 16:51:38 -0700 Subject: [PATCH] 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 --- monitor/att.c | 2 -- 1 file changed, 2 deletions(-) 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; -- 2.7.4