From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> If scanning is not set the discovery might have been initiated by another HAL so do not stop it. --- android/gatt.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/android/gatt.c b/android/gatt.c index f797e7d..8a8419c 100644 --- a/android/gatt.c +++ b/android/gatt.c @@ -661,6 +661,11 @@ connect: device_set_state(dev, DEVICE_CONNECT_READY); dev->bdaddr_type = addr_type; + if (!scanning) { + connect_next_dev(); + return; + } + /* * We are ok to perform connect now. Stop discovery * and once it is stopped continue with creating ACL -- 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