Fix out of bounds array access in lexer

If the type char is signed, then in the function
yylex_GetFloatMaskAndFloatLen(), *s can have a negative value and be converted
to a negative int32_t which is then used as an array index. It should be
converted to uint8_t instead to ensure that the value is in the bounds of the
tFloatingFirstChar, tFloatingSecondChar, and tFloatingChars arrays.
This commit is contained in:
dbrotz
2019-06-16 15:50:56 -07:00
parent 54e5bf0f0c
commit 1decf5d0d4
4 changed files with 10 additions and 3 deletions

View File

@@ -0,0 +1 @@
x<EFBFBD>

View File

@@ -0,0 +1,3 @@
ERROR: garbage_char.asm(1):
syntax error
error: Assembly aborted (1 errors)!

View File

@@ -0,0 +1,3 @@
ERROR: -(1):
syntax error
error: Assembly aborted (1 errors)!