diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-02-20 23:39:45 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-02-20 23:39:45 +0800 |
commit | 6ca4d6b1083d4c982a4810d677c19afa5a88456f (patch) | |
tree | 3386bab2b00a1c8184fc572f2b5799944b7f000a /plugins | |
parent | 69cdae0bcb0a0824b594bade4620b4093a605b2f (diff) | |
download | gsoc2013-evolution-6ca4d6b1083d4c982a4810d677c19afa5a88456f.tar.gz gsoc2013-evolution-6ca4d6b1083d4c982a4810d677c19afa5a88456f.tar.zst gsoc2013-evolution-6ca4d6b1083d4c982a4810d677c19afa5a88456f.zip |
Patch from Paul Bolle <pebolle@tiscali.nl>: Fix for bug #517082 (Fixed a small memory-leak)
svn path=/trunk/; revision=35064
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/import-ics-attachments/ChangeLog | 8 | ||||
-rw-r--r-- | plugins/import-ics-attachments/icsimporter.c | 1 |
2 files changed, 8 insertions, 1 deletions
diff --git a/plugins/import-ics-attachments/ChangeLog b/plugins/import-ics-attachments/ChangeLog index c58460b719..dfc443ce64 100644 --- a/plugins/import-ics-attachments/ChangeLog +++ b/plugins/import-ics-attachments/ChangeLog @@ -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: diff --git a/plugins/import-ics-attachments/icsimporter.c b/plugins/import-ics-attachments/icsimporter.c index 093d95e3d0..c869db35d9 100644 --- a/plugins/import-ics-attachments/icsimporter.c +++ b/plugins/import-ics-attachments/icsimporter.c @@ -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); |