ImGuiConfig: fix incorrect allocation size causing OOB memory write

Fix was found after the issue in the previous commit was found.
This commit is contained in:
Kawe Mazidjatari 2023-01-15 18:12:39 +01:00
parent 9d2ffa6e26
commit ca3e5ac9d1

View File

@ -22,7 +22,7 @@ void ImGuiConfig::Load()
}
uint32_t nLen = FileSystem()->Size(hFile);
uint8_t* pBuf = MemAllocSingleton()->Alloc<uint8_t>(nLen);
uint8_t* pBuf = MemAllocSingleton()->Alloc<uint8_t>(nLen + 1);
int nRead = FileSystem()->Read(pBuf, nLen, hFile);
FileSystem()->Close(hFile);