mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
CON: proper bound checks for {re,}definequote commands.
git-svn-id: https://svn.eduke32.com/eduke32@3262 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
f2a9af0bae
commit
10ae7e342c
1 changed files with 16 additions and 11 deletions
|
@ -5313,15 +5313,17 @@ repeatcase:
|
|||
initprintf("%s:%d: error: quote number exceeds limit of %d.\n",g_szScriptFileName,g_lineNumber,MAXQUOTES);
|
||||
g_numCompilerErrors++;
|
||||
}
|
||||
|
||||
if (ScriptQuotes[k] == NULL)
|
||||
ScriptQuotes[k] = (char *)Bcalloc(MAXQUOTELEN,sizeof(uint8_t));
|
||||
|
||||
if (!ScriptQuotes[k])
|
||||
else
|
||||
{
|
||||
ScriptQuotes[k] = NULL;
|
||||
Bsprintf(tempbuf,"Failed allocating %" PRIdPTR " byte quote text buffer.",sizeof(uint8_t) * MAXQUOTELEN);
|
||||
G_GameExit(tempbuf);
|
||||
if (ScriptQuotes[k] == NULL)
|
||||
ScriptQuotes[k] = (char *)Bcalloc(MAXQUOTELEN,sizeof(uint8_t));
|
||||
|
||||
if (!ScriptQuotes[k])
|
||||
{
|
||||
ScriptQuotes[k] = NULL;
|
||||
Bsprintf(tempbuf,"Failed allocating %" PRIdPTR " byte quote text buffer.",sizeof(uint8_t) * MAXQUOTELEN);
|
||||
G_GameExit(tempbuf);
|
||||
}
|
||||
}
|
||||
|
||||
if (tw == CON_DEFINEQUOTE)
|
||||
|
@ -5336,9 +5338,8 @@ repeatcase:
|
|||
{
|
||||
if (ScriptQuoteRedefinitions[g_numQuoteRedefinitions] == NULL)
|
||||
ScriptQuoteRedefinitions[g_numQuoteRedefinitions] = (char *)Bcalloc(MAXQUOTELEN,sizeof(uint8_t));
|
||||
if (!ScriptQuoteRedefinitions[g_numQuoteRedefinitions])
|
||||
if (ScriptQuoteRedefinitions[g_numQuoteRedefinitions] == NULL)
|
||||
{
|
||||
ScriptQuoteRedefinitions[g_numQuoteRedefinitions] = NULL;
|
||||
Bsprintf(tempbuf,"Failed allocating %" PRIdPTR " byte quote text buffer.",sizeof(uint8_t) * MAXQUOTELEN);
|
||||
G_GameExit(tempbuf);
|
||||
}
|
||||
|
@ -5368,8 +5369,12 @@ repeatcase:
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (tw == CON_DEFINEQUOTE)
|
||||
*(ScriptQuotes[k]+i) = '\0';
|
||||
{
|
||||
if ((unsigned)k < MAXQUOTES)
|
||||
*(ScriptQuotes[k]+i) = '\0';
|
||||
}
|
||||
else
|
||||
{
|
||||
*(ScriptQuoteRedefinitions[g_numQuoteRedefinitions]+i) = '\0';
|
||||
|
|
Loading…
Reference in a new issue