From: John Ernberg <[email protected]>

---
 drivers/rilmodem/voicecall.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/rilmodem/voicecall.c b/drivers/rilmodem/voicecall.c
index 8515ebb..b7180b9 100644
--- a/drivers/rilmodem/voicecall.c
+++ b/drivers/rilmodem/voicecall.c
@@ -302,8 +302,7 @@ no_calls:
                }
        }
 
-       g_slist_foreach(vd->calls, (GFunc) g_free, NULL);
-       g_slist_free(vd->calls);
+       g_slist_free_full(vd->calls, g_free);
 
        vd->calls = calls;
        vd->local_release = 0;
@@ -848,8 +847,7 @@ void ril_voicecall_remove(struct ofono_voicecall *vc)
        if (vd->clcc_source)
                g_source_remove(vd->clcc_source);
 
-       g_slist_foreach(vd->calls, (GFunc) g_free, NULL);
-       g_slist_free(vd->calls);
+       g_slist_free_full(vd->calls, g_free);
 
        ofono_voicecall_set_data(vc, NULL);
 
-- 
1.9.1
_______________________________________________
ofono mailing list
[email protected]
https://lists.ofono.org/mailman/listinfo/ofono

Reply via email to