[Debugger] Fix memory dump

This commit is contained in:
shygoo 2021-05-24 21:41:22 -05:00
parent 2aea0218fd
commit 96b9ac0c45
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ bool CDumpMemory::DumpMemory(LPCTSTR FileName, DumpFormat Format, DWORD StartPC,
}
uint32_t dumpLen = EndPC - StartPC;
std::unique_ptr<uint8_t> dumpBuf = std::make_unique<uint8_t>(dumpLen);
std::unique_ptr<uint8_t[]> dumpBuf = std::make_unique<uint8_t[]>(dumpLen);
uint32_t dumpIdx = 0;
for (uint32_t pc = StartPC; pc < EndPC; pc++, dumpIdx++)