From e11bfba10cc15cf74f8a657fad018aece4a5bde9 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Fri, 29 May 2015 11:53:26 +0300 Subject: [PATCH] shared/att: Fix boolean check in handle_notify() ext_signed is boolean and shall be checked with logical op. --- src/shared/att.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/att.c b/src/shared/att.c index 053aa47a4..f9a581703 100644 --- a/src/shared/att.c +++ b/src/shared/att.c @@ -733,7 +733,7 @@ static void handle_notify(struct bt_att *att, uint8_t opcode, uint8_t *pdu, const struct queue_entry *entry; bool found; - if (opcode & ATT_OP_SIGNED_MASK & !att->ext_signed) { + if ((opcode & ATT_OP_SIGNED_MASK) && !att->ext_signed) { if (!handle_signed(att, opcode, pdu, pdu_len)) return; pdu_len -= BT_ATT_SIGNATURE_LEN; -- 2.47.3