From bbdd18089b45d99f1e5c34bcc27d69d5b3ecabbf 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. --- monitor/att.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/monitor/att.c b/monitor/att.c index d06a1b223..9ae88504a 100644 --- a/monitor/att.c +++ b/monitor/att.c @@ -792,8 +792,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.47.3