[glib/wip/gcleanup: 36/79] completion-test: Fix leaks in tests



commit a0fc7021ecd77a0d8d5c7754e74c1f0dc238ca7c
Author: Stef Walter <stefw gnome org>
Date:   Sat Nov 9 20:25:39 2013 +0100

    completion-test: Fix leaks in tests
    
    https://bugzilla.gnome.org/show_bug.cgi?id=711751

 tests/completion-test.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/tests/completion-test.c b/tests/completion-test.c
index 789cd9a..4be88c9 100644
--- a/tests/completion-test.c
+++ b/tests/completion-test.c
@@ -42,6 +42,7 @@ int main (int argc, char *argv[])
   items = g_list_append (items, "bb");
   items = g_list_append (items, "bc");
   g_completion_add_items (cmp, items);
+  g_list_free (items);
 
   items = g_completion_complete (cmp, "a", &prefix);
   g_assert (!strcmp ("a\302", prefix));
@@ -71,6 +72,7 @@ int main (int argc, char *argv[])
 
   items = g_list_append (NULL, "bb");
   g_completion_remove_items (cmp, items);
+  g_list_free (items);
 
   items = g_completion_complete_utf8 (cmp, "b", &prefix);
   g_assert (g_list_length (items) == 1);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]