From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> Fixes clang warnings: ... android/gatt.c:2823:1: warning: Potential leak of memory pointed to by 'cb_data' ... --- android/gatt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/android/gatt.c b/android/gatt.c index d672bdb..9e23398 100644 --- a/android/gatt.c +++ b/android/gatt.c @@ -2957,7 +2957,8 @@ static void handle_client_write_characteristic(const void *buf, uint16_t len) goto failed; } - if (cmd->write_type != GATT_WRITE_TYPE_NO_RESPONSE) { + if (cmd->write_type != GATT_WRITE_TYPE_NO_RESPONSE && + cmd->write_type != GATT_WRITE_TYPE_SIGNED) { cb_data = create_char_op_data(cmd->conn_id, &srvc->id, &ch->id, cmd->srvc_id.is_primary); if (!cb_data) { -- 1.9.1 -- 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