# HG changeset patch # User Eric Warmenhoven # Date 992722232 0 # Node ID cad4405a0a45d184726b6e0bfe0b01e9f077e510 # Parent 1b8f4b90bf0927333d47ce04146ccaabc9ed7f4e [gaim-migrate @ 2054] should be removing input watcher only after all possible signoffs occur, otherwise may get report that we're removing it twice committer: Tailor Script diff -r 1b8f4b90bf09 -r cad4405a0a45 src/oscar.c --- a/src/oscar.c Sat Jun 16 20:00:17 2001 +0000 +++ b/src/oscar.c Sat Jun 16 20:10:32 2001 +0000 @@ -658,7 +658,6 @@ debug_printf("Latest WinAIM released version %s, build %d, at %s (%s)\n", latestrelease, latestbuild, latestreleaseurl, latestreleaseinfo); debug_printf("Closing auth connection...\n"); - gdk_input_remove(gc->inpa); aim_conn_kill(sess, &command->conn); bosconn = aim_newconn(sess, AIM_CONN_TYPE_BOS, NULL); @@ -711,6 +710,7 @@ return -1; } aim_auth_sendcookie(sess, bosconn, cookie); + gdk_input_remove(gc->inpa); return 1; }