1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

PDB parsing hardening

This commit is contained in:
Brian Fiete 2022-08-26 14:02:37 -07:00
parent 311cdaece1
commit 6eddf12948
2 changed files with 14 additions and 8 deletions

View file

@ -9638,6 +9638,9 @@ static void PdbTestFile(WinDebugger* debugger, const StringImpl& path)
for (int i = 0; i < coffFile.mTypes.mSize; i++)
coffFile.mTypes[i]->PopulateType();
for (int i = 0; i < coffFile.mCvModuleInfo.mSize; i++)
coffFile.ParseCompileUnit(i);
}
static void PdbTest(WinDebugger* debugger, const StringImpl& path)