Patch from Paul Bolle <pebolle@tiscali.nl>: Fix for bug #517082 (Fixed a small memory-leak)

svn path=/trunk/; revision=35064
This commit is contained in:
Suman Manjunath
2008-02-20 15:39:45 +00:00
parent 69cdae0bcb
commit 6ca4d6b108
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2007-02-20 Paul Bolle <pebolle@tiscali.nl>
** Fix for bug #517082
* icsimporter.c: (init_widgets): Fix small leak.
2008-02-06 Milan Crha <mcrha@redhat.com>
** Fix for bug #514622
@ -13,7 +19,7 @@
2007-06-03 Srinivasa Ragavan <sragavan@novell.com>
** Fix for version removal from Installed files from Gilles Dartiguelongue
** Fix for version removal from Installed files from Gilles Dartiguelongue
* Makefile.am:

View File

@ -235,6 +235,7 @@ init_widgets(char *path)
markup = g_markup_printf_escaped ("<b>%s</b>", label_str);
gtk_label_set_markup (GTK_LABEL (label), markup);
g_free (markup);
hbox = gtk_hbox_new (FALSE, FALSE);
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 6);
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 6);