mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
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:
1
test/asm/garbage_char.asm
Normal file
1
test/asm/garbage_char.asm
Normal file
@@ -0,0 +1 @@
|
||||
x<EFBFBD>
|
||||
3
test/asm/garbage_char.out
Normal file
3
test/asm/garbage_char.out
Normal file
@@ -0,0 +1,3 @@
|
||||
ERROR: garbage_char.asm(1):
|
||||
syntax error
|
||||
error: Assembly aborted (1 errors)!
|
||||
3
test/asm/garbage_char.out.pipe
Normal file
3
test/asm/garbage_char.out.pipe
Normal file
@@ -0,0 +1,3 @@
|
||||
ERROR: -(1):
|
||||
syntax error
|
||||
error: Assembly aborted (1 errors)!
|
||||
Reference in New Issue
Block a user