From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> --- src/shared/gatt-db.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/shared/gatt-db.c b/src/shared/gatt-db.c index a2684d8..b447199 100644 --- a/src/shared/gatt-db.c +++ b/src/shared/gatt-db.c @@ -902,7 +902,12 @@ bool gatt_db_attribute_get_service_handles(struct gatt_db_attribute *attrib, bool gatt_db_attribute_get_permissions(struct gatt_db_attribute *attrib, uint32_t *permissions) { - return false; + if (!attrib || !permissions) + return false; + + *permissions = attrib->permissions; + + return true; } bool gatt_db_attribute_read(struct gatt_db_attribute *attrib, uint16_t offset, -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html