mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
- fixed out of bounds memory access.
This commit is contained in:
parent
06d2f9fcf1
commit
7a8208eb2f
5 changed files with 12 additions and 10 deletions
|
@ -62,7 +62,6 @@ void _consoleSysMsg(const char* pzFormat, ...) {
|
|||
va_list args;
|
||||
va_start(args, pzFormat);
|
||||
vsprintf(buffer, pzFormat, args);
|
||||
initprintf("%s(%i): %s\n", _module, _line, buffer);
|
||||
|
||||
OSD_Printf(OSDTEXT_RED "%s(%i): %s\n", _module, _line, buffer);
|
||||
}
|
||||
|
|
|
@ -482,7 +482,7 @@ int FileSystem::Iterate (const char *name, int *lastlump, ELookupMode lookupmode
|
|||
}
|
||||
|
||||
lump_p = &FileInfo[*lastlump];
|
||||
while (lump_p < &FileInfo[NumEntries])
|
||||
while (lump_p <= &FileInfo.Last())
|
||||
{
|
||||
auto lump = lump_p->lump;
|
||||
if (lump->LumpName[lookupindex] == lname)
|
||||
|
|
|
@ -1016,7 +1016,7 @@ TArray<GrpEntry> GrpScan()
|
|||
|
||||
for (unsigned i = 0; i < foundGames.Size(); i++)
|
||||
{
|
||||
for (unsigned j = foundGames.Size(); j > i; j--)
|
||||
for (unsigned j = foundGames.Size() - 1; j > i; j--)
|
||||
{
|
||||
if (foundGames[i].FileInfo.CRC == foundGames[j].FileInfo.CRC)
|
||||
foundGames.Delete(j);
|
||||
|
|
|
@ -50,28 +50,28 @@ public:
|
|||
|
||||
iterator begin()
|
||||
{
|
||||
return &Argv[0];
|
||||
return Argv.begin();
|
||||
}
|
||||
const_iterator begin() const
|
||||
{
|
||||
return &Argv[0];
|
||||
return Argv.begin();
|
||||
}
|
||||
const_iterator cbegin() const
|
||||
{
|
||||
return &Argv[0];
|
||||
return Argv.begin();
|
||||
}
|
||||
|
||||
iterator end()
|
||||
{
|
||||
return &Argv[Argv.Size()];
|
||||
return Argv.end();
|
||||
}
|
||||
const_iterator end() const
|
||||
{
|
||||
return &Argv[Argv.Size()];
|
||||
return Argv.end();
|
||||
}
|
||||
const_iterator cend() const
|
||||
{
|
||||
return &Argv[Argv.Size()];
|
||||
return Argv.end();
|
||||
}
|
||||
|
||||
FArgs();
|
||||
|
|
|
@ -237,14 +237,17 @@ public:
|
|||
}
|
||||
return true;
|
||||
}
|
||||
// Return a reference to an element
|
||||
// Return a reference to an element.
|
||||
// Note that the asserts must let the element after the end pass because this gets frequently used as a sentinel pointer.
|
||||
T &operator[] (size_t index) const
|
||||
{
|
||||
assert(index <= Count);
|
||||
return Array[index];
|
||||
}
|
||||
// Returns the value of an element
|
||||
TT operator() (size_t index) const
|
||||
{
|
||||
assert(index <= Count);
|
||||
return Array[index];
|
||||
}
|
||||
// Returns a reference to the last element
|
||||
|
|
Loading…
Reference in a new issue