This is needed for next patch --- attrib/gatt.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/attrib/gatt.c b/attrib/gatt.c index 2749c46..df4e3a7 100644 --- a/attrib/gatt.c +++ b/attrib/gatt.c @@ -1008,12 +1008,17 @@ static void desc_discovered_cb(guint8 status, const guint8 *ipdu, { struct discover_desc *dd = user_data; struct att_data_list *list; - unsigned int i, err = ATT_ECODE_ATTR_NOT_FOUND; + unsigned int i, err = 0; guint8 format; uint16_t last = 0xffff; uint8_t type; gboolean uuid_found = FALSE; + if (status == ATT_ECODE_ATTR_NOT_FOUND) { + err = dd->descriptors ? 0 : status; + goto done; + } + if (status) { err = status; goto done; @@ -1086,7 +1091,6 @@ static void desc_discovered_cb(guint8 status, const guint8 *ipdu, } done: - err = (dd->descriptors ? 0 : err); dd->cb(err, dd->descriptors, dd->user_data); } -- 1.8.4 -- 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