From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> --- src/device.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/device.c b/src/device.c index a9b644b..2003c7f 100644 --- a/src/device.c +++ b/src/device.c @@ -595,7 +595,11 @@ static gboolean dev_property_get_name(const GDBusPropertyTable *property, struct btd_device *device = data; const char *empty = "", *ptr; - ptr = device->name ?: empty; + if (strlen(device->name) > 0) + ptr = device->name; + else + ptr = empty; + dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &ptr); return TRUE; -- 1.8.3.2 -- 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