From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> --- 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 c3fc2a7..938cb67 100644 --- a/src/shared/gatt-db.c +++ b/src/shared/gatt-db.c @@ -830,7 +830,10 @@ uint16_t gatt_db_attribute_get_end_handle(struct gatt_db_attribute *attrib) const bt_uuid_t *gatt_db_attribute_get_type(struct gatt_db_attribute *attrib) { - return NULL; + if (!attrib) + return NULL; + + return &attrib->uuid; } bool gatt_db_attribute_get_service_uuid(struct gatt_db_attribute *attrib, -- 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