# HG changeset patch # User Luke Schierer # Date 1192814923 0 # Node ID 4f6afc4c79cb2791da0578172304e7f6860e1b50 # Parent 6531c165dc94359e05b636533fc624b7f636c6ae# Parent 2c93039337700c63abd335091d4338939ef0789d merge of '2af9cd4957f255e5640362a54527c26a829fa371' and '93d058425a5fc4b776f6ec36a2989a5d45836bc0' diff -r 6531c165dc94 -r 4f6afc4c79cb pidgin/plugins/ticker/ticker.c --- a/pidgin/plugins/ticker/ticker.c Fri Oct 19 17:28:11 2007 +0000 +++ b/pidgin/plugins/ticker/ticker.c Fri Oct 19 17:28:43 2007 +0000 @@ -124,8 +124,10 @@ static gboolean buddy_ticker_set_pixmap_cb(gpointer data) { TickerData *td = data; - buddy_ticker_update_contact(td->contact); - td->timeout = 0; + if (g_list_find(tickerbuds, td) != NULL) { + buddy_ticker_update_contact(td->contact); + td->timeout = 0; + } return FALSE; }