summaryrefslogtreecommitdiff
path: root/android/gatt.c
diff options
context:
space:
mode:
authorJakub Tyszkowski <jakub.tyszkowski@tieto.com>2015-02-10 13:48:14 +0100
committerSzymon Janc <szymon.janc@tieto.com>2015-02-11 11:37:28 +0100
commit5647336bba71c9e974b87ea02d1e122b491a4b3d (patch)
treec2dc6d0af548b3829b80d503859dad56b30ec8e8 /android/gatt.c
parent355770caa64936e2798586dd13f45a919221bd0f (diff)
downloadbluez-5647336bba71c9e974b87ea02d1e122b491a4b3d.tar.gz
android/gatt: Remove device's connection counter
Originally we used connection counter to determine if device object is still needed or should be destroyed but we switched to reference counting quite some time ago and this counter is not needed anymore.
Diffstat (limited to 'android/gatt.c')
-rw-r--r--android/gatt.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/android/gatt.c b/android/gatt.c
index d958965e6..7f8f99f88 100644
--- a/android/gatt.c
+++ b/android/gatt.c
@@ -166,7 +166,6 @@ struct gatt_device {
guint ind_id;
int ref;
- int conn_cnt;
struct queue *autoconnect_apps;
@@ -913,8 +912,8 @@ static void destroy_connection(void *data)
if (conn->timeout_id > 0)
g_source_remove(conn->timeout_id);
- conn->device->conn_cnt--;
- if (conn->device->conn_cnt == 0)
+ if (!queue_find(app_connections, match_connection_by_device,
+ conn->device))
connection_cleanup(conn->device);
queue_destroy(conn->transactions, free);
@@ -1115,7 +1114,6 @@ static struct app_connection *create_connection(struct gatt_device *device,
}
new_conn->device = device_ref(device);
- new_conn->device->conn_cnt++;
return new_conn;
}
@@ -1605,7 +1603,7 @@ reply:
*/
queue_foreach(dev->autoconnect_apps, create_app_connection, dev);
- if (!dev->conn_cnt) {
+ if (!queue_find(app_connections, match_connection_by_device, dev)) {
struct app_connection *conn;
if (!dev->attrib)