From: <bo...@us...> - 2006-12-17 21:12:31
|
Revision: 18019 http://svn.sourceforge.net/gaim/?rev=18019&view=rev Author: boler Date: 2006-12-17 13:12:18 -0800 (Sun, 17 Dec 2006) Log Message: ----------- gg: Fixed double free() in ggp_pubdir_handle_info(). Modified Paths: -------------- trunk/libgaim/protocols/gg/gg.c Modified: trunk/libgaim/protocols/gg/gg.c =================================================================== --- trunk/libgaim/protocols/gg/gg.c 2006-12-17 20:14:41 UTC (rev 18018) +++ trunk/libgaim/protocols/gg/gg.c 2006-12-17 21:12:18 UTC (rev 18019) @@ -1046,13 +1046,11 @@ val = ggp_buddy_get_name(gc, ggp_str_to_uin(who)); g_free(who); - who = val; /* val = gaim_strdup_withhtml(text->str); */ - gaim_notify_userinfo(gc, who, user_info, ggp_sr_close_cb, form); + gaim_notify_userinfo(gc, val, user_info, ggp_sr_close_cb, form); g_free(val); - g_free(who); gaim_notify_user_info_destroy(user_info); } /* }}} */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |