1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Ignore lineInfoType 255

This commit is contained in:
Brian Fiete 2024-04-28 11:28:09 -04:00
parent e6a64776a1
commit 8225643598

View file

@ -3684,6 +3684,10 @@ CvCompileUnit* COFF::ParseCompileUnit(CvModuleInfo* moduleInfo, CvCompileUnit* c
PTR_ALIGN(data, sectionData, 4);
}
}
else if (lineInfoType == 255)
{
// Ignore
}
else
{
BF_ASSERT((lineInfoType >= DEBUG_S_SYMBOLS) && (lineInfoType <= DEBUG_S_COFF_SYMBOL_RVA));