# HG changeset patch # User Elliott Sales de Andrade # Date 1275521361 0 # Node ID bb6e71f7be93b2936a3e0869edc6eccf8e21fa17 # Parent 805bc41f6de77c830e34010a6c4f58c1c7509512 We shouldn't free user->extinfo here because it can also contain phone numbers. Mark says freeing this struct at this point is not so much of a priority in the grand scheme of saving memory. diff -r 805bc41f6de7 -r bb6e71f7be93 libpurple/protocols/msn/notification.c --- a/libpurple/protocols/msn/notification.c Wed Jun 02 21:41:16 2010 +0000 +++ b/libpurple/protocols/msn/notification.c Wed Jun 02 23:29:21 2010 +0000 @@ -1610,11 +1610,6 @@ msn_user_set_statusline(user, NULL); } - if (user->extinfo && user->extinfo->media_type == CURRENT_MEDIA_UNKNOWN) { - g_free(user->extinfo); - user->extinfo = NULL; - } - msn_user_update(user); }