* cygtls.cc (_cygtls::remove): Clear exitsock after close.

* fhandler_console.cc (fhandler_console::write_normal): Store character in a
local variable for potential future inspection.
This commit is contained in:
Christopher Faylor
2005-05-11 03:33:38 +00:00
parent 13505ca8fc
commit 8ad65ff049
3 changed files with 14 additions and 4 deletions

View File

@@ -1430,7 +1430,8 @@ fhandler_console::write_normal (const unsigned char *src,
while (found < end)
{
if (base_chars[*found] != NOR)
char ch = base_chars[*found];
if (ch != NOR)
break;
found++;
}