# HG changeset patch # User Mark Doliner # Date 1065375708 0 # Node ID f6de82a25d5f414b09e5ecad454c7a04ae33b413 # Parent 669af8c0801af5f9f6fc38776b4b4d0026f2d5f4 [gaim-migrate @ 7727] I don't know when this started... I think someone switched a function from returning allocated memory to returning a static buffer and didn't tell oscar.c committer: Tailor Script diff -r 669af8c0801a -r f6de82a25d5f src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Sun Oct 05 17:30:36 2003 +0000 +++ b/src/protocols/oscar/oscar.c Sun Oct 05 17:41:48 2003 +0000 @@ -3184,7 +3184,6 @@ final = gaim_str_sub_away_formatters(text->str, gaim_connection_get_display_name(gc)); g_string_free(text, TRUE); gaim_notify_formatted(gc, NULL, _("Buddy Information"), NULL, final, NULL, NULL); - g_free(final); return 1; } @@ -5429,7 +5428,6 @@ tmp = ret; ret = g_strconcat(tmp, _("Away Message: "), tmp1, "\n", NULL); free(tmp); - g_free(tmp1); g_free(away_utf8); } }