[grisbi-devel] [PATCH 3/6] Fix 3 memory leaks in accueil.c

pbiava pierre.biava at nerim.net
Mon Jun 17 21:34:12 CEST 2013


---
 src/accueil.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/accueil.c b/src/accueil.c
index a6ea119..be572f6 100644
--- a/src/accueil.c
+++ b/src/accueil.c
@@ -1084,6 +1084,7 @@ void gsb_main_page_affiche_ligne_du_compte ( GtkWidget *pTable,
     gtk_misc_set_alignment ( GTK_MISC ( pLabel ), MISC_LEFT, MISC_VERT_CENTER );
     gtk_size_group_add_widget ( GTK_SIZE_GROUP ( size_group_accueil ), pLabel );
     gtk_widget_set_style ( pLabel, pStyleLabelNomCompte );
+    gtk_style_unref ( pStyleLabelNomCompte );
 
     /* Création d'une boite à évènement qui sera rattachée au nom du compte */
     pEventBox = gtk_event_box_new ();
@@ -1143,6 +1144,7 @@ void gsb_main_page_affiche_ligne_du_compte ( GtkWidget *pTable,
         }
     }
     gtk_widget_set_style ( pLabel, pStyleLabelSoldePointe );
+    gtk_style_unref ( pStyleLabelSoldePointe );
 
     /* Création d'une boite à évènement qui sera rattachée au solde pointé du compte */
     pEventBox = gtk_event_box_new ();
@@ -1202,6 +1204,7 @@ void gsb_main_page_affiche_ligne_du_compte ( GtkWidget *pTable,
         }
     }
     gtk_widget_set_style ( pLabel, pStyleLabelSoldeCourant );
+    gtk_style_unref ( pStyleLabelSoldeCourant );
 
     /* Création d'une boite à évènement qui sera rattachée au solde courant du compte */
     pEventBox = gtk_event_box_new ();
-- 
1.8.1.5



More information about the devel mailing list