From 40798ee2cf490d054a5b80ff57b5f1047de0e4eb Mon Sep 17 00:00:00 2001 From: Lukasz Rymanowski Date: Fri, 16 May 2014 12:47:32 +0200 Subject: [PATCH] android/gatt: Fix for read request If there is no attribute in database we should return immediately. --- android/gatt.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/android/gatt.c b/android/gatt.c index 9bbcc48ec..9d90f3a67 100644 --- a/android/gatt.c +++ b/android/gatt.c @@ -3656,8 +3656,10 @@ static void read_requested_attributes(void *data, void *user_data) resp_data->offset, process_data->opcode, &process_data->device->bdaddr, - &value, &value_len)) + &value, &value_len)) { resp_data->length = READ_FAILED; + return; + } /* We have value here already if no callback will be called */ if (value_len >= 0) { -- 2.47.3