[grisbi-cvs] [git push]Grisbi branch grisbi-1.0.x updated. upstream_version_1_0_0-44-g5f7f096

Pierre Biava noreply at sourceforge.net
Mon Aug 22 22:02:20 CEST 2016


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  5f7f096f686f14743b905a003328e26fadfeb6b2 (commit)
       via  14bfd3e326fecab45ed2b42e3b23c5ccf5866da0 (commit)
       via  d6845dfeeaefcfe1a7b59f43ceb5d0ed52176ab1 (commit)
       via  9826cbff27e23bb0ba4d2685dccaf00de58340eb (commit)
      from  e1c0eb7eff9e0eceeed9e35a81645405961f52eb (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 faf4df2988d792c33aa3374f98accfb903610cea
Author: Rémi Cardona <remi at gentoo.org>
Date:   Tue Nov 17 00:26:25 2015 +0100

    Fix use-after-free in gtk_combofix
    
    entry_string is actually freed when gtk_combofix_set_text() is called
    in 2 places higher up in the function.

diff --git a/src/gtk_combofix.c b/src/gtk_combofix.c
index cb6bdf8..c8a83fe 100644
--- a/src/gtk_combofix.c
+++ b/src/gtk_combofix.c
@@ -1330,7 +1330,9 @@ static gboolean gtk_combofix_entry_changed ( GtkComboFix *combofix, gboolean ins
     }
 
     /* show the popup */
-    if ( priv -> visible_items && strlen ( entry_string )
+    if ( priv -> visible_items
+     &&
+     gtk_entry_get_text_length ( GTK_ENTRY ( combofix -> entry ) )
      &&
      completed_string
      &&

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

commit faf4df2988d792c33aa3374f98accfb903610cea
Author: Rémi Cardona <remi at gentoo.org>
Date:   Tue Nov 17 00:26:25 2015 +0100

    Fix use-after-free in gtk_combofix
    
    entry_string is actually freed when gtk_combofix_set_text() is called
    in 2 places higher up in the function.

diff --git a/src/gtk_combofix.c b/src/gtk_combofix.c
index cb6bdf8..c8a83fe 100644
--- a/src/gtk_combofix.c
+++ b/src/gtk_combofix.c
@@ -1330,7 +1330,9 @@ static gboolean gtk_combofix_entry_changed ( GtkComboFix *combofix, gboolean ins
     }
 
     /* show the popup */
-    if ( priv -> visible_items && strlen ( entry_string )
+    if ( priv -> visible_items
+     &&
+     gtk_entry_get_text_length ( GTK_ENTRY ( combofix -> entry ) )
      &&
      completed_string
      &&

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

commit faf4df2988d792c33aa3374f98accfb903610cea
Author: Rémi Cardona <remi at gentoo.org>
Date:   Tue Nov 17 00:26:25 2015 +0100

    Fix use-after-free in gtk_combofix
    
    entry_string is actually freed when gtk_combofix_set_text() is called
    in 2 places higher up in the function.

diff --git a/src/gtk_combofix.c b/src/gtk_combofix.c
index cb6bdf8..c8a83fe 100644
--- a/src/gtk_combofix.c
+++ b/src/gtk_combofix.c
@@ -1330,7 +1330,9 @@ static gboolean gtk_combofix_entry_changed ( GtkComboFix *combofix, gboolean ins
     }
 
     /* show the popup */
-    if ( priv -> visible_items && strlen ( entry_string )
+    if ( priv -> visible_items
+     &&
+     gtk_entry_get_text_length ( GTK_ENTRY ( combofix -> entry ) )
      &&
      completed_string
      &&

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

commit faf4df2988d792c33aa3374f98accfb903610cea
Author: Rémi Cardona <remi at gentoo.org>
Date:   Tue Nov 17 00:26:25 2015 +0100

    Fix use-after-free in gtk_combofix
    
    entry_string is actually freed when gtk_combofix_set_text() is called
    in 2 places higher up in the function.

diff --git a/src/gtk_combofix.c b/src/gtk_combofix.c
index cb6bdf8..c8a83fe 100644
--- a/src/gtk_combofix.c
+++ b/src/gtk_combofix.c
@@ -1330,7 +1330,9 @@ static gboolean gtk_combofix_entry_changed ( GtkComboFix *combofix, gboolean ins
     }
 
     /* show the popup */
-    if ( priv -> visible_items && strlen ( entry_string )
+    if ( priv -> visible_items
+     &&
+     gtk_entry_get_text_length ( GTK_ENTRY ( combofix -> entry ) )
      &&
      completed_string
      &&

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

Summary of changes:
 src/affichage.c             |    6 ++++--
 src/bet_finance_ui.c        |    5 ++++-
 src/bet_hist.c              |    5 ++++-
 src/bet_tab.c               |    5 ++++-
 src/categories_onglet.c     |   10 ++++++++--
 src/custom_list.c           |   31 ++++++++++++++++++++++++++-----
 src/etats_onglet.c          |   10 ++++++++--
 src/gsb_file.c              |   16 +++++++++++-----
 src/gsb_transactions_list.c |   11 +++++++----
 src/import.c                |    8 +++++++-
 src/imputation_budgetaire.c |   10 ++++++++--
 src/transaction_list.c      |    2 --
 src/utils_file_selection.c  |    6 +++++-
 src/utils_files.c           |    5 ++++-
 14 files changed, 100 insertions(+), 30 deletions(-)


hooks/post-receive
-- 
Grisbi


More information about the cvs mailing list