From 2520ba858782bf7815600079c68a6e3174b6efd2 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Thu, 26 Jun 2014 10:19:27 +0200 Subject: [PATCH] android/gatt: Fix not sending notification if no included services --- android/gatt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/gatt.c b/android/gatt.c index d09e72f7f..3297c85f4 100644 --- a/android/gatt.c +++ b/android/gatt.c @@ -2163,7 +2163,7 @@ static void get_included_cb(uint8_t status, GSList *included, void *user_data) if (status) { error("gatt: no included services found"); - return; + goto failed; } /* Remember that we already search included services.*/ -- 2.47.3