[PATCH spice-gtk] glib-compat: g_slist_free_full: pass the right ptr to destroy (rhbz#997893)

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

 



The destroy function passed to g_slist_free_full should be passed the elements
data pointer, not the element itself.

Signed-off-by: Hans de Goede <hdegoede@xxxxxxxxxx>
---
 gtk/glib-compat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gtk/glib-compat.c b/gtk/glib-compat.c
index 21be1f6..c3bb8e6 100644
--- a/gtk/glib-compat.c
+++ b/gtk/glib-compat.c
@@ -88,7 +88,7 @@ g_slist_free_full(GSList         *list,
 
     if (free_func) {
         for (el = list; el ; el = g_slist_next(el)) {
-            free_func(el);
+            free_func(el->data);
         }
     }
 
-- 
1.8.3.1

_______________________________________________
Spice-devel mailing list
Spice-devel@xxxxxxxxxxxxxxxxxxxxx
http://lists.freedesktop.org/mailman/listinfo/spice-devel




[Index of Archives]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Security]     [Bugtraq]     [Linux]     [Linux OMAP]     [Linux MIPS]     [ECOS]     [Asterisk Internet PBX]     [Linux API]     [Monitors]