[grisbi-cvs] [git push]Grisbi branch grisbi-1.0.x updated. upstream_version_0_9_93-4-g670d8f1
Pierre Biava
noreply at sourceforge.net
Sat Feb 1 15:07:20 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 670d8f1657bf01d86fd8fd932fea17b3774dd5cd (commit)
from 8a2c9acf7221516b3a3d302fd94f4256f559c002 (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;
+ }
}
-----------------------------------------------------------------------
Summary of changes:
po/cs.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/da.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/de.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/el.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/eo.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/es.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/fa.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/fr.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/he.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/it.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/lv.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/nl.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/pl.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/pt_BR.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/ro.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/ru.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/sv.po | 194 +++++++++++++++++++++++++++++-----------------------------
po/zh_CN.po | 194 +++++++++++++++++++++++++++++-----------------------------
18 files changed, 1746 insertions(+), 1746 deletions(-)
hooks/post-receive
--
Grisbi
More information about the cvs
mailing list