mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
bansystem: fix incorrect allocation size causing OOB memory write
This commit is contained in:
parent
d8dd9aba93
commit
9d2ffa6e26
@ -24,7 +24,7 @@ void CBanSystem::Load(void)
|
||||
return;
|
||||
|
||||
uint32_t nLen = FileSystem()->Size(pFile);
|
||||
char* pBuf = MemAllocSingleton()->Alloc<char>(nLen);
|
||||
char* pBuf = MemAllocSingleton()->Alloc<char>(nLen + 1);
|
||||
|
||||
int nRead = FileSystem()->Read(pBuf, nLen, pFile);
|
||||
FileSystem()->Close(pFile);
|
||||
|
Loading…
x
Reference in New Issue
Block a user