# HG changeset patch # User Eric Warmenhoven # Date 1002745405 0 # Node ID 8530d4d72fabe1236187a1eb69ecea75cc1d811f # Parent ec21ec04cdeb984ed58adf903bb01938d7bc9034 [gaim-migrate @ 2490] this way we can do our own check. isn't that nice committer: Tailor Script diff -r ec21ec04cdeb -r 8530d4d72fab src/proxy.c --- a/src/proxy.c Wed Oct 10 20:21:24 2001 +0000 +++ b/src/proxy.c Wed Oct 10 20:23:25 2001 +0000 @@ -112,7 +112,8 @@ void gaim_input_remove(gint tag) { debug_printf("CLOSURE: removing input watcher %d\n", tag); - g_source_remove(tag); + if (tag > 0) + g_source_remove(tag); } static void no_one_calls(gpointer data, gint source, GaimInputCondition cond)