Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH] avrcp: Fix wrong pointer check
@ 2014-01-31  8:33 Andrei Emeltchenko
  2014-02-02 16:03 ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 6+ messages in thread
From: Andrei Emeltchenko @ 2014-01-31  8:33 UTC (permalink / raw)
  To: linux-bluetooth

From: Andrei Emeltchenko <andrei.emeltchenko@intel.com>

There is wrong assumption that handler might be NULL while it is a
pointer to a struct table so check instead for struct members. This
fixes accessing wrong memory.
---
 profiles/audio/avrcp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/profiles/audio/avrcp.c b/profiles/audio/avrcp.c
index df88138..5030ce1 100644
--- a/profiles/audio/avrcp.c
+++ b/profiles/audio/avrcp.c
@@ -1673,7 +1673,7 @@ static size_t handle_vendordep_pdu(struct avctp *conn, uint8_t transaction,
 			break;
 	}
 
-	if (!handler || handler->code != *code) {
+	if (!handler->code || handler->code != *code) {
 		pdu->params[0] = AVRCP_STATUS_INVALID_COMMAND;
 		goto err_metadata;
 	}
@@ -1737,7 +1737,7 @@ static size_t handle_browsing_pdu(struct avctp *conn,
 			break;
 	}
 
-	if (handler == NULL || handler->func == NULL)
+	if (!handler->func)
 		return avrcp_browsing_general_reject(operands);
 
 	session->transaction = transaction;
-- 
1.8.3.2


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-02-03  9:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-31  8:33 [PATCH] avrcp: Fix wrong pointer check Andrei Emeltchenko
2014-02-02 16:03 ` Luiz Augusto von Dentz
2014-02-03  7:51   ` Andrei Emeltchenko
2014-02-03  9:20     ` Luiz Augusto von Dentz
2014-02-03  9:36       ` Andrei Emeltchenko
2014-02-03  9:42         ` Andrei Emeltchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox