From 698b7747d7bc3fd8addc23566a373193ad698f31 Mon Sep 17 00:00:00 2001 From: Milanka Ringwald Date: Fri, 24 Jan 2025 12:26:35 +0100 Subject: [PATCH] avrcp_target: allow for interim response --- src/classic/avrcp_target.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classic/avrcp_target.c b/src/classic/avrcp_target.c index 9e5298266..21d9e78b6 100644 --- a/src/classic/avrcp_target.c +++ b/src/classic/avrcp_target.c @@ -1300,7 +1300,7 @@ static void avrcp_handle_l2cap_data_packet_for_signaling_connection(avrcp_connec } case AVRCP_PDU_ID_REGISTER_NOTIFICATION:{ - if (length != 1){ + if (length < 1){ avrcp_target_response_vendor_dependent_reject(connection, pdu_id, AVRCP_STATUS_PARAMETER_CONTENT_ERROR); return; }