# HG changeset patch # User Evan Schoenberg # Date 1192708901 0 # Node ID aee8d876fed10234f91d97f115c1f1162f0aea0d # Parent 145ee1570fc0cc859153988a2a732ab10eb090a5 When getting info on a myspace user not on the buddy list, a temporary PurpleBuddy is needed so that the data can be associated properly. This fixes a bug wherein the profile link went to http://myspace.com/0 for all buddies not on the list. A check against that uid being 0 has also been added to avoid displaying junk data. Such temporary MsimUser objects (note that the temporariness of MsimUser objects is unchanged; a temporary PurpleBuddy has just been added to go with it) are destroyed before a delayed callback can be triggerred. This means that we can not request a buddy icon on that object, because we will end up with a pointer to freed data in the callback some time in the future. This fixes a crash when getting info on a non-buddy list buddy (which for reasons I can't pinpoint was most likely if the username contained capital letters). A reference counting system for MsimUser objects would fix this but is a significantly more complex solution. diff -r 145ee1570fc0 -r aee8d876fed1 libpurple/protocols/myspace/myspace.c --- a/libpurple/protocols/myspace/myspace.c Thu Oct 18 07:49:20 2007 +0000 +++ b/libpurple/protocols/myspace/myspace.c Thu Oct 18 12:01:41 2007 +0000 @@ -935,7 +935,6 @@ gchar *username; PurpleNotifyUserInfo *user_info; MsimUser *user; - gboolean temporary_user; g_return_if_fail(MSIM_SESSION_VALID(session)); @@ -957,10 +956,14 @@ if (!user) { /* User isn't on blist, create a temporary user to store info. */ - temporary_user = TRUE; + PurpleBuddy *buddy; + user = g_new0(MsimUser, 1); - } else { - temporary_user = FALSE; + user->temporary_user = TRUE; + + buddy = purple_buddy_new(session->account, username, NULL); + user->buddy = buddy; + buddy->proto_data = (gpointer)user; } /* Update user structure with new information */ @@ -976,7 +979,8 @@ purple_notify_user_info_destroy(user_info); - if (temporary_user) { + if (user->temporary_user) { + purple_blist_remove_buddy(user->buddy); g_free(user->client_info); g_free(user->gender); g_free(user->location); @@ -1452,7 +1456,7 @@ purple_debug_info("msim", "data=%s\n", data->str ? data->str : "(NULL)"); - /* url_text is variable=data\n... */ + /* url_text is variable=data\n...†*/ /* Check FILEVER, 1.0.716.0. 716 is build, MSIM_CLIENT_VERSION */ /* New (english) version can be downloaded from SETUPURL+SETUPFILE */ diff -r 145ee1570fc0 -r aee8d876fed1 libpurple/protocols/myspace/user.c --- a/libpurple/protocols/myspace/user.c Thu Oct 18 07:49:20 2007 +0000 +++ b/libpurple/protocols/myspace/user.c Thu Oct 18 12:01:41 2007 +0000 @@ -99,10 +99,12 @@ if (full) { /* TODO: link to username, if available */ - char *profile = g_strdup_printf("http://myspace.com/%d", - uid, uid); - purple_notify_user_info_add_pair(user_info, _("Profile"), profile); - g_free(profile); + if (uid) { + char *profile = g_strdup_printf("http://myspace.com/%d", + uid, uid); + purple_notify_user_info_add_pair(user_info, _("Profile"), profile); + g_free(profile); + } } @@ -201,6 +203,14 @@ /* Ignore because PurpleBuddy knows this already */ g_free(value_str); } else if (g_str_equal(key_str, "ImageURL") || g_str_equal(key_str, "AvatarURL")) { + if (user->temporary_user) { + /* This user will be destroyed soon; don't try to look up its image or avatar, + * since that won't return immediately and we will end up accessing freed data. + */ + g_free(value_str); + return; + } + const gchar *previous_url; g_free(user->image_url); diff -r 145ee1570fc0 -r aee8d876fed1 libpurple/protocols/myspace/user.h --- a/libpurple/protocols/myspace/user.h Thu Oct 18 07:49:20 2007 +0000 +++ b/libpurple/protocols/myspace/user.h Thu Oct 18 12:01:41 2007 +0000 @@ -38,6 +38,7 @@ gchar *band_name, *song_name; gchar *image_url; guint last_image_updated; + gboolean temporary_user; } MsimUser; /* Callback function pointer type for when a user's information is received,