# HG changeset patch # User Sadrul Habib Chowdhury # Date 1159311760 0 # Node ID 275c84b1b2a4fd5519ca20c555cfd1ae4ea98d65 # Parent 6b8bc59414f0d27592796dbaec2332a5e4a3e2be [gaim-migrate @ 17376] 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. committer: Tailor Script diff -r 6b8bc59414f0 -r 275c84b1b2a4 console/gntblist.c --- a/console/gntblist.c Tue Sep 26 22:54:24 2006 +0000 +++ b/console/gntblist.c Tue Sep 26 23:02:40 2006 +0000 @@ -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;