From fe8dabaaa1eb0583e24709031ad51d5b7ff73413 Mon Sep 17 00:00:00 2001 From: Ravi kumar Veeramally Date: Wed, 18 Dec 2013 16:53:11 +0200 Subject: [PATCH] android/pan: Change local_role to NONE only when device list is empty --- android/pan.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/android/pan.c b/android/pan.c index 2bbba9e99..b83f534f7 100644 --- a/android/pan.c +++ b/android/pan.c @@ -67,8 +67,6 @@ static int device_cmp(gconstpointer s, gconstpointer user_data) static void pan_device_free(struct pan_device *dev) { - local_role = HAL_PAN_ROLE_NONE; - if (dev->watch > 0) { g_source_remove(dev->watch); dev->watch = 0; @@ -81,6 +79,9 @@ static void pan_device_free(struct pan_device *dev) devices = g_slist_remove(devices, dev); g_free(dev); + + if (g_slist_length(devices) == 0) + local_role = HAL_PAN_ROLE_NONE; } static void bt_pan_notify_conn_state(struct pan_device *dev, uint8_t state) -- 2.47.3