src/common/shared/shared.c: Check >= maxsize in Info_SetValueForKey(). Found by ASAN.

This commit is contained in:
maraakate 2022-05-27 18:28:31 -04:00
parent b59077b972
commit deec7e422d

View file

@ -1398,7 +1398,7 @@ Info_SetValueForKey(char *s, char *key, char *value)
Com_sprintf(newi, sizeof(newi), "\\%s\\%s", key, value);
if (strlen(newi) + strlen(s) > maxsize)
if (strlen(newi) + strlen(s) >= maxsize)
{
Com_Printf("Info string length exceeded\n");
return;