Return-Path: From: Arman Uguray To: linux-bluetooth@vger.kernel.org Cc: luiz.dentz@gmail.com, Arman Uguray Subject: [PATCH BlueZ v1 13/14] shared/gatt: Don't incorrectly terminate discovery Date: Wed, 11 Feb 2015 19:17:43 -0800 Message-Id: <1423711064-7390-14-git-send-email-armansito@chromium.org> In-Reply-To: <1423711064-7390-1-git-send-email-armansito@chromium.org> References: <1423711064-7390-1-git-send-email-armansito@chromium.org> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: bt_gatt_client terminates discovery if no primary services are found within the given range. This behavior is incorrect, as the given handle range may contain secondary services and those should be discovered regardless. --- src/shared/gatt-client.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/shared/gatt-client.c b/src/shared/gatt-client.c index d5a277b..03f6725 100644 --- a/src/shared/gatt-client.c +++ b/src/shared/gatt-client.c @@ -915,7 +915,7 @@ static void discover_primary_cb(bool success, uint8_t att_ecode, util_debug(client->debug_callback, client->debug_data, "Primary service discovery failed." " ATT ECODE: 0x%02x", att_ecode); - goto done; + goto secondary; } if (!result || !bt_gatt_iter_init(&iter, result)) { @@ -948,6 +948,7 @@ static void discover_primary_cb(bool success, uint8_t att_ecode, queue_push_tail(op->pending_svcs, attr); } +secondary: /* Discover secondary services */ if (bt_gatt_discover_secondary_services(client->att, NULL, op->start, op->end, -- 2.2.0.rc0.207.ga3a616c