[grisbi-cvs] [SCM] grisbi branch, master, updated. upstream_version_0_9_5-222-g4a4000d

Pierre Biava nobody at users.sourceforge.net
Sun Dec 16 10:08:29 CET 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "grisbi".

The branch, master has been updated
       via  4a4000d7c0084b18ac5ceac6d05625f70da7b877 (commit)
      from  0d6764aeee3688e1d42030988281dfcecb2f3d1c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4a4000d7c0084b18ac5ceac6d05625f70da7b877
Author: pbiava <pierre.biava at nerim.net>
Date:   Thu Dec 13 22:02:13 2012 +0100

    fixes a random crash with g_slist_free_full () not found error

-----------------------------------------------------------------------

Changes:
diff --git a/src/accueil.c b/src/accueil.c
index ce4d168..80b5521 100644
--- a/src/accueil.c
+++ b/src/accueil.c
@@ -655,7 +655,8 @@ static void gsb_main_page_diplays_accounts ( GtkWidget *pTable,
             list_tmp = list_tmp -> next;
         }
 
-        g_slist_free_full ( list_partial, g_free );
+        /* bug not found with g_slist_free_full() */
+        g_slist_free ( list_partial );
     }
     else
     {


hooks/post-receive
-- 
grisbi


More information about the cvs mailing list