From 46c97c9a29ad063931afe753ff4a4d1db9664dde Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Thu, 3 Jul 2014 14:32:56 +0300 Subject: [PATCH] android/gatt: Fix memory leak 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 95de221d2..e3de18dad 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_PREPARE || + cmd->write_type == GATT_WRITE_TYPE_DEFAULT) { cb_data = create_char_op_data(cmd->conn_id, &srvc->id, &ch->id, cmd->srvc_id.is_primary); if (!cb_data) { -- 2.47.3