# HG changeset patch # User Mark Doliner # Date 1065376269 0 # Node ID 3471c3b1e85cd383c0fb8b7861191dfd0af3d9fc # Parent f6de82a25d5f414b09e5ecad454c7a04ae33b413 [gaim-migrate @ 7728] "Memleaks are bad, mkay." committer: Tailor Script diff -r f6de82a25d5f -r 3471c3b1e85c src/protocols/yahoo/yahoo.c --- a/src/protocols/yahoo/yahoo.c Sun Oct 05 17:41:48 2003 +0000 +++ b/src/protocols/yahoo/yahoo.c Sun Oct 05 17:51:09 2003 +0000 @@ -2584,6 +2584,8 @@ _("Error retrieving profile"), NULL, NULL); + g_free(info_data->name); + g_free(info_data); return; } @@ -2602,6 +2604,9 @@ gaim_notify_formatted(info_data->gc, NULL, _("Buddy Information"), NULL, buf, NULL, NULL); + + g_free(info_data->name); + g_free(info_data); return; } @@ -2619,6 +2624,9 @@ gaim_notify_formatted(info_data->gc, NULL, _("Buddy Information"), NULL, buf, NULL, NULL); + + g_free(info_data->name); + g_free(info_data); return; } @@ -2814,6 +2822,9 @@ } g_free(url_buffer); + + g_free(info_data->name); + g_free(info_data); } static void yahoo_get_info(GaimConnection *gc, const char *name)