Mercurial > pidgin.yaz
diff src/proxy.c @ 2477:8530d4d72fab
[gaim-migrate @ 2490]
this way we can do our own check. isn't that nice
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Wed, 10 Oct 2001 20:23:25 +0000 |
| parents | 2927c2c26fe6 |
| children | 642413968b03 |
line wrap: on
line diff
--- 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)
