From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> Avoid extra header calculation and fix wrong line indentation. --- android/avctp.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/android/avctp.c b/android/avctp.c index 615fecf..6f9b33b 100644 --- a/android/avctp.c +++ b/android/avctp.c @@ -798,8 +798,7 @@ failed: return FALSE; } -static gboolean session_cb(GIOChannel *chan, GIOCondition cond, - gpointer data) +static gboolean session_cb(GIOChannel *chan, GIOCondition cond, gpointer data) { struct avctp *session = data; struct avctp_channel *control = session->control; @@ -836,7 +835,7 @@ static gboolean session_cb(GIOChannel *chan, GIOCondition cond, ret -= sizeof(struct avc_header); - operands = buf + sizeof(struct avctp_header) + sizeof(struct avc_header); + operands = (uint8_t *) avc + sizeof(struct avc_header); operand_count = ret; if (avctp->cr == AVCTP_RESPONSE) { -- 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