All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] core: Double free on adapter_stop
@ 2013-03-29 21:18 Alex Deymo
  2013-03-30 15:55 ` Johan Hedberg
  0 siblings, 1 reply; 4+ messages in thread
From: Alex Deymo @ 2013-03-29 21:18 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: keybuk, Alex Deymo

The discovery_list list has the list of current discovery clients and is
removed on adapter_stop (for example due a "power off" command). The
g_slist_free_full will call discovery_free on every element of the list
and remove the nodes of the list, but discovery_destroy (called by
discovery_free) will not only free the element, but also remove it from
the list. This causes the list node to be freed twice, once by
g_slist_free_full and once by g_slist_remove.

This fix calls successively discovery_free and lets it remove the list one
by one.
---
 src/adapter.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/adapter.c b/src/adapter.c
index e553626..ac322de 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -4272,8 +4272,11 @@ static void adapter_stop(struct btd_adapter *adapter)
 	cancel_passive_scanning(adapter);
 
 	if (adapter->discovery_list) {
-		g_slist_free_full(adapter->discovery_list, discovery_free);
-		adapter->discovery_list = NULL;
+		while (adapter->discovery_list) {
+			struct discovery_client *client =
+						adapter->discovery_list->data;
+			discovery_free(client);
+		}
 
 		adapter->discovering = false;
 	}
-- 
1.8.1.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-04-02  6:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-29 21:18 [PATCH] core: Double free on adapter_stop Alex Deymo
2013-03-30 15:55 ` Johan Hedberg
2013-04-01 18:14   ` [PATCH v2] core: Fix a double " Alex Deymo
2013-04-02  6:45     ` Johan Hedberg

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.