From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> This fixes static analysers warnings. --- profiles/audio/avrcp.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/profiles/audio/avrcp.c b/profiles/audio/avrcp.c index bca2fc8..aa932e0 100644 --- a/profiles/audio/avrcp.c +++ b/profiles/audio/avrcp.c @@ -1909,6 +1909,9 @@ static void avrcp_get_current_player_value(struct avrcp *session, struct avrcp_header *pdu = (void *) buf; uint16_t length = AVRCP_HEADER_LENGTH + count + 1; + if (count > AVRCP_ATTRIBUTE_LAST) + return; + memset(buf, 0, sizeof(buf)); set_company_id(pdu->company_id, IEEEID_BTSIG); -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html