bansystem: fix incorrect allocation size causing OOB memory write

This commit is contained in:
rexx 2023-01-14 15:35:46 +00:00 committed by GitHub
parent d8dd9aba93
commit 9d2ffa6e26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);