guile-user
[Top][All Lists]
Advanced

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

Re: guile-gnome-0 - guile-1.6.8-6.3 - random crash


From: Andy Wingo
Subject: Re: guile-gnome-0 - guile-1.6.8-6.3 - random crash
Date: Mon, 22 Mar 2010 21:33:50 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.92 (gnu/linux)

On Wed 17 Mar 2010 21:09, David Pirotte <address@hidden> writes:

> I know, guile-gnome-0 is obsolate ... But I have no choice right know and 
> really really hope that
> I can help developers to find out what the problem is and debug it ... 

As long as you know this :) This was released *five years ago* :)

Are you using custom tree models? I bet it's something whereby we are
freeing something with g_free but it was allocated with g_slice_alloc.

What about this fix (from git revision
c7101904f2704b3cf7fbde5c02602be01ff37f2b, 2007-12-09), to
gtk/gw/gtk-support.c:

@@ -727,7 +761,7 @@ _wrap_gtk_tree_model_iter_next (GtkTreeModel *model, 
GtkTreeIter *iter)
 
     if (gtk_tree_model_iter_next (model, new))
         return new;
-    g_free (new);
+    gtk_tree_iter_free (new);
     return NULL;
 }
     
Regards,

Andy
-- 
http://wingolog.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]