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

Properly ignore S_FILESTATIC in EvaluateLocation

This commit is contained in:
Brian Fiete 2022-01-04 10:59:27 -05:00
parent bab233746e
commit ec83ae50fa

View file

@ -6385,7 +6385,12 @@ intptr COFF::EvaluateLocation(DbgSubprogram* dwSubprogram, const uint8* locData,
{ {
inlineDepth++; inlineDepth++;
} }
break; break;
case S_FILESTATIC:
{
FILESTATICSYM& fileStaticSym = *(FILESTATICSYM*)dataStart;
}
break;
default: default:
if (!mFailed) if (!mFailed)
Fail(StrFormat("Unknown symbol type '0x%X' in EvaluateLocation", symType)); Fail(StrFormat("Unknown symbol type '0x%X' in EvaluateLocation", symType));