Hi, On Thu, Aug 16, 2012, João Paulo Rechi Vita wrote: > @@ -133,8 +133,10 @@ struct btd_adapter { > + GSList *connecting_list; /* Pending connects */ > + gboolean connecting; /* Connect active */ What's the relationship with the above two? Isn't connecting always true when g_slist_length(connecting_list) > 0 and false when the list is empty? > static gboolean connect_pending_cb(gpointer user_data) > { > struct btd_device *device = user_data; > struct btd_adapter *adapter = device_get_adapter(device); > + GIOChannel *io; > > /* in the future we may want to check here if the controller supports > * scanning and connecting at the same time */ > if (adapter->discovering) > return TRUE; > > - device_att_connect(device); > + if (adapter->connecting) > + return TRUE; > + > + adapter->connecting = TRUE; > + io = device_att_connect(device); > + g_io_add_watch(io, G_IO_OUT | G_IO_ERR, clean_connecting_state, > + btd_device_ref(device)); > > return FALSE; > } Since you're not storing "io" after the function returns you should be doing a g_io_channel_unref() after calling g_io_add_watch(). Looking at device_att_connect it seems like it's missing a g_io_channel_ref (either when assigning to device->att_io or when returning from the function). > + adapter->connecting_list = g_slist_append( > + adapter->connecting_list, device); > Missing btd_device_unref()? Johan -- 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