From 42b98fd60b1d1c6116918f5ac96fd27993a2a54c Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Mon, 9 Jun 2014 11:26:16 +0300 Subject: [PATCH] android/gatt: Fix error status override --- android/gatt.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/android/gatt.c b/android/gatt.c index 558b203c8..cc3746cb3 100644 --- a/android/gatt.c +++ b/android/gatt.c @@ -1947,8 +1947,10 @@ static void handle_client_search_service(const void *buf, uint16_t len) if (s) { send_client_primary_notify(s, INT_TO_PTR(conn->id)); } else { - if (!search_dev_for_srvc(conn, &uuid)) + if (!search_dev_for_srvc(conn, &uuid)) { status = HAL_STATUS_FAILED; + goto reply; + } status = HAL_STATUS_SUCCESS; goto reply; -- 2.47.3