mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
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:
parent
9d2ffa6e26
commit
ca3e5ac9d1
2
r5dev/thirdparty/imgui/src/imgui_utility.cpp
vendored
2
r5dev/thirdparty/imgui/src/imgui_utility.cpp
vendored
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user