# HG changeset patch # User Ka-Hing Cheung # Date 1248026162 0 # Node ID aac28ab73e9ea3c7e7ab4986ed3de34143bdb11a # Parent f4556d6f58c42e07fed758d2b36250b591581122 if I return FALSE to remove the timeout handle, I should probably set timeout handle to 0 as well so we won't try to remove the non-existent handle later Refs #3330 diff -r f4556d6f58c4 -r aac28ab73e9e libpurple/protocols/msn/servconn.c --- a/libpurple/protocols/msn/servconn.c Sun Jul 19 17:45:08 2009 +0000 +++ b/libpurple/protocols/msn/servconn.c Sun Jul 19 17:56:02 2009 +0000 @@ -296,6 +296,7 @@ servconn_idle_timeout_cb(MsnServConn *servconn) { msn_servconn_disconnect(servconn); + servconn->timeout_handle = 0; return FALSE; }