# HG changeset patch # User Christian Hammond # Date 1085637180 0 # Node ID 9fcbb18aa7be11a313d9fbeb4b113fef61db5fb5 # Parent 9885420f049f80dc439cb8cea328f0efc54da0de [gaim-migrate @ 9863] Patch by Curtis Beattie to plug a memory leak when a user attempts to set a friendly name in MSN that is longer than the allowed size. committer: Tailor Script diff -r 9885420f049f -r 9fcbb18aa7be COPYRIGHT --- a/COPYRIGHT Thu May 27 05:51:01 2004 +0000 +++ b/COPYRIGHT Thu May 27 05:53:00 2004 +0000 @@ -8,6 +8,7 @@ Paul Aurich Patrick Aussems Kevin Barry +Curtis Beattie Brian Bernas Jonas Birmé Ethan Blanton diff -r 9885420f049f -r 9fcbb18aa7be src/protocols/msn/msn.c --- a/src/protocols/msn/msn.c Thu May 27 05:51:01 2004 +0000 +++ b/src/protocols/msn/msn.c Thu May 27 05:53:00 2004 +0000 @@ -78,6 +78,9 @@ { gaim_notify_error(gc, NULL, _("Your new MSN friendly name is too long."), NULL); + + g_free(alias); + return; }