Return-Path: From: Luiz Augusto von Dentz To: linux-bluetooth@vger.kernel.org Subject: [PATCH v2 9/9] shared/gatt-db: Add gatt_db_attribute_get_end_handle Date: Tue, 28 Oct 2014 18:18:43 +0200 Message-Id: <1414513123-5689-9-git-send-email-luiz.dentz@gmail.com> In-Reply-To: <1414513123-5689-1-git-send-email-luiz.dentz@gmail.com> References: <1414513123-5689-1-git-send-email-luiz.dentz@gmail.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: From: Luiz Augusto von Dentz --- src/shared/gatt-db.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/shared/gatt-db.c b/src/shared/gatt-db.c index 99fe849..e371f1b 100644 --- a/src/shared/gatt-db.c +++ b/src/shared/gatt-db.c @@ -841,7 +841,10 @@ uint16_t gatt_db_attribute_get_start_handle(struct gatt_db_attribute *attrib) uint16_t gatt_db_attribute_get_end_handle(struct gatt_db_attribute *attrib) { - return 0; + if (!attrib) + return 0; + + return attrib->handle + attrib->service->num_handles - 1; } const bt_uuid_t *gatt_db_attribute_get_type(struct gatt_db_attribute *attrib) -- 1.9.3