From: Eric W. <war...@us...> - 2001-10-10 20:23:28
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv18132 Modified Files: proxy.c Log Message: this way we can do our own check. isn't that nice Index: proxy.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/proxy.c,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- proxy.c 2001/09/27 19:17:11 1.30 +++ proxy.c 2001/10/10 20:23:25 1.31 @@ -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) |