From: <sea...@us...> - 2006-10-06 00:10:38
|
Revision: 17434 http://svn.sourceforge.net/gaim/?rev=17434&view=rev Author: seanegan Date: 2006-10-05 17:10:34 -0700 (Thu, 05 Oct 2006) Log Message: ----------- I have a blist.xml with a lot of buddy_icon's set to files that don't exist. This could be the cause, but I doubt it. Modified Paths: -------------- trunk/libgaim/buddyicon.c Modified: trunk/libgaim/buddyicon.c =================================================================== --- trunk/libgaim/buddyicon.c 2006-10-05 23:24:00 UTC (rev 17433) +++ trunk/libgaim/buddyicon.c 2006-10-06 00:10:34 UTC (rev 17434) @@ -261,6 +261,9 @@ { gaim_debug_error("buddyicon", "Unable to create file %s: %s\n", filename, strerror(errno)); + g_free(filename); + g_free(random); + return; } g_free(filename); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |