* 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:
@@ -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++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user