[grisbi-cvs] [git push]Grisbi branch grisbi-1.0.x updated. upstream_version_0_9_93-10-g41d0bd0

Pierre Biava noreply at sourceforge.net
Wed Feb 12 21:25:52 CET 2014


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, grisbi-1.0.x has been updated
       via  41d0bd01667c68b0f58da6393186944e0e3c8ae7 (commit)
       via  2f325e7e53f7720ace1117699e3db73235244da8 (commit)
      from  0f267373274aab3d08185e7218f8e04ba2bc2980 (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 -----------------------------------------------------------------
http://grisbi.git.sourceforge.net/git/gitweb.cgi?p=grisbi/code;a=commitdiff;h=

commit b194749970ff89f803f8604033efa3b5e3870060
Author: Ludovic Rousseau <ludovic.rousseau+github at gmail.com>
Date:   Sat Nov 23 20:37:40 2013 +0100

    Fix crash on exit
    
    Do not call g_free() on already deallocated memory.
    
    Fixes bug 1613 http://www.grisbi.org/bugsreports/view.php?id=1613

diff --git a/src/bet_graph.c b/src/bet_graph.c
index 8dd6f51..e482b14 100644
--- a/src/bet_graph.c
+++ b/src/bet_graph.c
@@ -2480,8 +2480,16 @@ void bet_graph_set_configuration_variables ( const gchar *string )
  * */
 void struct_free_bet_graph_prefs ( void )
 {
-    g_free ( prefs_prev );
-    g_free ( prefs_hist );
+    if ( prefs_prev )
+    {
+        g_free ( prefs_prev );
+        prefs_prev = NULL;
+    }
+    if ( prefs_hist )
+    {
+        g_free ( prefs_hist );
+        prefs_hist = NULL;
+    }
 }
 
 

http://grisbi.git.sourceforge.net/git/gitweb.cgi?p=grisbi/code;a=commitdiff;h=

commit b194749970ff89f803f8604033efa3b5e3870060
Author: Ludovic Rousseau <ludovic.rousseau+github at gmail.com>
Date:   Sat Nov 23 20:37:40 2013 +0100

    Fix crash on exit
    
    Do not call g_free() on already deallocated memory.
    
    Fixes bug 1613 http://www.grisbi.org/bugsreports/view.php?id=1613

diff --git a/src/bet_graph.c b/src/bet_graph.c
index 8dd6f51..e482b14 100644
--- a/src/bet_graph.c
+++ b/src/bet_graph.c
@@ -2480,8 +2480,16 @@ void bet_graph_set_configuration_variables ( const gchar *string )
  * */
 void struct_free_bet_graph_prefs ( void )
 {
-    g_free ( prefs_prev );
-    g_free ( prefs_hist );
+    if ( prefs_prev )
+    {
+        g_free ( prefs_prev );
+        prefs_prev = NULL;
+    }
+    if ( prefs_hist )
+    {
+        g_free ( prefs_hist );
+        prefs_hist = NULL;
+    }
 }
 
 

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

Summary of changes:
 configure.in                                       |    2 +-
 grisbi.spec                                        |    2 +-
 help/fr/grisbi-manuel-1page.html                   | 1469 ++++++++++----------
 help/fr/grisbi-manuel001.html                      |   36 +-
 help/fr/grisbi-manuel003.html                      |    2 +-
 help/fr/grisbi-manuel004.html                      |    2 +-
 help/fr/grisbi-manuel008.html                      |    2 +-
 help/fr/grisbi-manuel009.html                      |  125 +-
 help/fr/grisbi-manuel010.html                      |   28 +-
 help/fr/grisbi-manuel011.html                      |   14 +-
 help/fr/grisbi-manuel012.html                      |    4 +-
 help/fr/grisbi-manuel013.html                      |   32 +-
 help/fr/grisbi-manuel014.html                      |   34 +-
 help/fr/grisbi-manuel015.html                      |   34 +-
 help/fr/grisbi-manuel016.html                      |    4 +-
 help/fr/grisbi-manuel017.html                      |    8 +-
 help/fr/grisbi-manuel018.html                      |   80 +-
 help/fr/grisbi-manuel019.html                      |   30 +-
 help/fr/grisbi-manuel020.html                      |   40 +-
 help/fr/grisbi-manuel021.html                      |   22 +-
 help/fr/grisbi-manuel022.html                      |   68 +-
 help/fr/grisbi-manuel023.html                      |  245 ++--
 help/fr/grisbi-manuel024.html                      |   10 +-
 help/fr/grisbi-manuel025.html                      |  557 ++++----
 help/fr/image/screenshot/budgetarylines_delete.png |  Bin 20885 -> 20676 bytes
 help/fr/image/screenshot/categories_delete.png     |  Bin 25185 -> 76839 bytes
 .../screenshot/datamanagement_history_create.png   |  Bin 41325 -> 39390 bytes
 .../screenshot/planned_transactions_display.png    |  Bin 7986 -> 7986 bytes
 help/fr/image/screenshot/setup_listCells.png       |  Bin 42746 -> 33924 bytes
 help/fr/image/screenshot/setup_thirdCategories.png |  Bin 41691 -> 41691 bytes
 help/fr/image/screenshot/thirdparties_delete.png   |  Bin 18707 -> 19388 bytes
 help/fr/index.html                                 |   19 +-
 32 files changed, 1461 insertions(+), 1408 deletions(-)
 mode change 100644 => 100755 help/fr/image/screenshot/planned_transactions_display.png
 mode change 100644 => 100755 help/fr/image/screenshot/setup_thirdCategories.png


hooks/post-receive
-- 
Grisbi


More information about the cvs mailing list