Patch for leak in message-list.c
Kjartan Maraas <[email protected]>
| Newsgroups | gmane.comp.gnome.evolution.patches |
|---|---|
| Message-ID | <1155736897.28210.11.camel@rivendell> |
Another gconf_client_get_string() return leaked. Cheers Kjartan _______________________________________________ Evolution-patches mailing list [email protected] http://mail.gnome.org/mailman/listinfo/evolution-patches
message-list.c-leak.patch
(text/x-patch, 585 B)
Index: message-list.c =================================================================== RCS file: /cvs/gnome/evolution/mail/message-list.c,v retrieving revision 1.433 diff -u -p -r1.433 message-list.c --- message-list.c 22 Jul 2006 10:51:18 -0000 1.433 +++ message-list.c 16 Aug 2006 14:01:25 -0000 @@ -1550,6 +1550,9 @@ static ECell * create_composite_cell (in g_object_set_data (cell_vbox, "cell_date", cell_date); g_object_set_data (cell_vbox, "cell_sub", cell_sub); g_object_set_data (cell_vbox, "cell_from", cell_from); + + g_free (fixed_name); + return cell_vbox; }