[Telepathy-commits] [telepathy-gabble/master] Don't free a GList using g_slist_free

Sjoerd Simons sjoerd.simons at collabora.co.uk
Wed Jan 7 03:43:44 PST 2009


---
 src/bytestream-multiple.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/bytestream-multiple.c b/src/bytestream-multiple.c
index 38baf90..72ff52a 100644
--- a/src/bytestream-multiple.c
+++ b/src/bytestream-multiple.c
@@ -126,7 +126,7 @@ gabble_bytestream_multiple_finalize (GObject *object)
 
   for (l = priv->fallback_stream_methods; l != NULL; l = g_list_next (l))
     g_free (l->data);
-  g_slist_free (priv->fallback_stream_methods);
+  g_list_free (priv->fallback_stream_methods);
 
   g_free (priv->stream_id);
   g_free (priv->stream_init_id);
-- 
1.5.6.5




More information about the Telepathy-commits mailing list