Fixed possible crash when classifying chars.

This commit is contained in:
Roberto Raggi
2008-12-03 09:31:29 +01:00
parent d5b00aaef9
commit 8c741ede88
2 changed files with 2 additions and 2 deletions

View File

@@ -221,7 +221,7 @@ void Lexer::scan_helper(Token *tok)
return;
}
char ch = _yychar;
unsigned char ch = _yychar;
yyinp();
switch (ch) {