From: Luiz Augusto von Dentz <luiz.dentz-von@xxxxxxxxx> There is no need to create a new object since there is no connection and the device is not permanent/paired. --- src/event.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/event.c b/src/event.c index ff768c0..cbaf9d7 100644 --- a/src/event.c +++ b/src/event.c @@ -676,7 +676,12 @@ void btd_event_conn_failed(bdaddr_t *local, bdaddr_t *peer, uint8_t status) struct btd_device *device; DBusConnection *conn = get_dbus_connection(); - if (!get_adapter_and_device(local, peer, &adapter, &device, TRUE)) + DBG("status 0x%02x", status); + + if (!get_adapter_and_device(local, peer, &adapter, &device, FALSE)) + return; + + if (!device) return; if (device_is_temporary(device)) -- 1.7.1 -- 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