mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-24 04:51:19 +00:00
Fixed read beyond buffer boundary during font color parsing
Printing of string that ends with '\c' led to undefined behavior Example: 'echo \c' in console
This commit is contained in:
parent
789214200c
commit
f174111128
1 changed files with 2 additions and 2 deletions
|
@ -2666,7 +2666,7 @@ EColorRange V_ParseFontColor (const uint8_t *&color_value, int normalcolor, int
|
||||||
}
|
}
|
||||||
else // Incomplete!
|
else // Incomplete!
|
||||||
{
|
{
|
||||||
color_value = ch - (*ch == '\0');
|
color_value = ch - (newcolor == '\0');
|
||||||
return CR_UNDEFINED;
|
return CR_UNDEFINED;
|
||||||
}
|
}
|
||||||
color_value = ch;
|
color_value = ch;
|
||||||
|
|
Loading…
Reference in a new issue