[grisbi-cvs] [git push]Grisbi branch wip_merge updated. upstream_version_0_9_92-161-g627df37
Ludovic Rousseau
noreply at sourceforge.net
Fri Nov 22 14:40:29 CET 2013
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, wip_merge has been updated
via 627df370d2e747d466ee37349965256cafd47459 (commit)
via 19f35d4054d233048f035e13f76d3cd75597b363 (commit)
via 42fc4ca2ffd1edd5eb9a3e622c024c2898292ecb (commit)
via aa7650ea4fb563ff2e78cc31206360498c16aa0a (commit)
via f57e4eebacbf8b2b89c1819867d26fc0271d682a (commit)
via 356f5e7ef1951f5f3958586cb5acc17f50eef107 (commit)
via 2f81f845d62b58ccfe86cd15e33568d43dbb4899 (commit)
via 85e4052fb9e673df5c87de1a0a22574a4a2f1bfc (commit)
via 1511669b715afdf04e535d9afddc2a2e071f92ca (commit)
via f6dbfc778abcc0c1fa81a6f95f979be5a9b67620 (commit)
from 6194ba78f9b075f207ed803d97be6df18d2c20bf (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 f57e4eebacbf8b2b89c1819867d26fc0271d682a
Author: Ludovic Rousseau <ludovic.rousseau+github at gmail.com>
Date: Wed Nov 20 22:09:19 2013 +0100
Avoid a duplicate call of g_hash_table_destroy()
After the regex_store has been destroyed we set it to NULL to avoid
another call to g_hash_table_destroy()
Fixes bug 1613 http://www.grisbi.org/bugsreports/view.php?id=1613
diff --git a/src/gsb_regex.c b/src/gsb_regex.c
index 266e29a..7795987 100644
--- a/src/gsb_regex.c
+++ b/src/gsb_regex.c
@@ -130,7 +130,10 @@ GRegex *gsb_regex_lookup ( const gchar *key )
void gsb_regex_destroy ( void )
{
if ( regex_store )
+ {
g_hash_table_destroy ( regex_store );
+ regex_store = NULL;
+ }
}
http://grisbi.git.sourceforge.net/git/gitweb.cgi?p=grisbi/code;a=commitdiff;h=
commit f57e4eebacbf8b2b89c1819867d26fc0271d682a
Author: Ludovic Rousseau <ludovic.rousseau+github at gmail.com>
Date: Wed Nov 20 22:09:19 2013 +0100
Avoid a duplicate call of g_hash_table_destroy()
After the regex_store has been destroyed we set it to NULL to avoid
another call to g_hash_table_destroy()
Fixes bug 1613 http://www.grisbi.org/bugsreports/view.php?id=1613
diff --git a/src/gsb_regex.c b/src/gsb_regex.c
index 266e29a..7795987 100644
--- a/src/gsb_regex.c
+++ b/src/gsb_regex.c
@@ -130,7 +130,10 @@ GRegex *gsb_regex_lookup ( const gchar *key )
void gsb_regex_destroy ( void )
{
if ( regex_store )
+ {
g_hash_table_destroy ( regex_store );
+ regex_store = NULL;
+ }
}
http://grisbi.git.sourceforge.net/git/gitweb.cgi?p=grisbi/code;a=commitdiff;h=
commit f57e4eebacbf8b2b89c1819867d26fc0271d682a
Author: Ludovic Rousseau <ludovic.rousseau+github at gmail.com>
Date: Wed Nov 20 22:09:19 2013 +0100
Avoid a duplicate call of g_hash_table_destroy()
After the regex_store has been destroyed we set it to NULL to avoid
another call to g_hash_table_destroy()
Fixes bug 1613 http://www.grisbi.org/bugsreports/view.php?id=1613
diff --git a/src/gsb_regex.c b/src/gsb_regex.c
index 266e29a..7795987 100644
--- a/src/gsb_regex.c
+++ b/src/gsb_regex.c
@@ -130,7 +130,10 @@ GRegex *gsb_regex_lookup ( const gchar *key )
void gsb_regex_destroy ( void )
{
if ( regex_store )
+ {
g_hash_table_destroy ( regex_store );
+ regex_store = NULL;
+ }
}
http://grisbi.git.sourceforge.net/git/gitweb.cgi?p=grisbi/code;a=commitdiff;h=
commit f57e4eebacbf8b2b89c1819867d26fc0271d682a
Author: Ludovic Rousseau <ludovic.rousseau+github at gmail.com>
Date: Wed Nov 20 22:09:19 2013 +0100
Avoid a duplicate call of g_hash_table_destroy()
After the regex_store has been destroyed we set it to NULL to avoid
another call to g_hash_table_destroy()
Fixes bug 1613 http://www.grisbi.org/bugsreports/view.php?id=1613
diff --git a/src/gsb_regex.c b/src/gsb_regex.c
index 266e29a..7795987 100644
--- a/src/gsb_regex.c
+++ b/src/gsb_regex.c
@@ -130,7 +130,10 @@ GRegex *gsb_regex_lookup ( const gchar *key )
void gsb_regex_destroy ( void )
{
if ( regex_store )
+ {
g_hash_table_destroy ( regex_store );
+ regex_store = NULL;
+ }
}
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 17 +++++++++--------
src/gsb_regex.c | 3 +++
src/gsb_scheduler_list.c | 2 +-
3 files changed, 13 insertions(+), 9 deletions(-)
hooks/post-receive
--
Grisbi
More information about the cvs
mailing list