From: <sa...@us...> - 2006-09-26 23:02:44
|
Revision: 17376 http://svn.sourceforge.net/gaim/?rev=17376&view=rev Author: sadrul Date: 2006-09-26 16:02:40 -0700 (Tue, 26 Sep 2006) Log Message: ----------- Patch from Richard Nelson (wabz) to fix a crash. This is probably what Luke is getting. I had it fixed in my local tree, not sure why I hadn't committed. Modified Paths: -------------- trunk/console/gntblist.c Modified: trunk/console/gntblist.c =================================================================== --- trunk/console/gntblist.c 2006-09-26 22:54:24 UTC (rev 17375) +++ trunk/console/gntblist.c 2006-09-26 23:02:40 UTC (rev 17376) @@ -1647,7 +1647,7 @@ GaimConnection *gc = gaim_account_get_connection(account); GaimPlugin *prpl; - if (!GAIM_CONNECTION_IS_CONNECTED(gc)) + if (!gc || !GAIM_CONNECTION_IS_CONNECTED(gc)) continue; prpl = gc->prpl; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |