# HG changeset patch # User Daniel Atallah # Date 1191521650 0 # Node ID 2216c520f4bd3e765b43142bc9e1b99a3a7104c2 # Parent a068bcd78b611fa5c655310d1fb7f5491fa1e60a I think this Fixes #3438. diff -r a068bcd78b61 -r 2216c520f4bd pidgin/plugins/ticker/ticker.c --- a/pidgin/plugins/ticker/ticker.c Thu Oct 04 14:36:45 2007 +0000 +++ b/pidgin/plugins/ticker/ticker.c Thu Oct 04 18:14:10 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; }