Diff between c2d4c9bda20be92a2e494f3de7663794facaf01c and 42b98fd60b1d1c6116918f5ac96fd27993a2a54c
Changed Files
| File | Additions | Deletions | Status |
| android/gatt.c | +3 | -1 | modified |
Full Patch
diff --git a/android/gatt.c b/android/gatt.c
index 558b203..cc3746c 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;