Bug#357285: patch

2006-03-17 Thread Richard Laager
On Fri, 2006-03-17 at 15:03 +0100, Chris Moore wrote: > I already sent this patch upstream. It's sourceforge bug #1420463: > > http://sourceforge.net/tracker/index.php?func=detail&aid=1420463&group_id=235&atid=100235 This bug is already fixed upstream for the 2.0.0 series. Richard -- To UN

Bug#357285: patch

2006-03-17 Thread Chris Moore
I already sent this patch upstream. It's sourceforge bug #1420463: http://sourceforge.net/tracker/index.php?func=detail&aid=1420463&group_id=235&atid=100235

Bug#357285: patch

2006-03-17 Thread Chris Moore
The code is doing:    account->permit = g_slist_remove(account->permit, l->data);    g_free(l->data);the g_slist_remove() removes 'l' from the list and frees it, then the g_free tries to access l->data after l has been freed. Switching the order of these 2 lines fixes the problem.The same bug occur