mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Properly ignore S_FILESTATIC in EvaluateLocation
This commit is contained in:
parent
bab233746e
commit
ec83ae50fa
1 changed files with 6 additions and 1 deletions
|
@ -6386,6 +6386,11 @@ intptr COFF::EvaluateLocation(DbgSubprogram* dwSubprogram, const uint8* locData,
|
|||
inlineDepth++;
|
||||
}
|
||||
break;
|
||||
case S_FILESTATIC:
|
||||
{
|
||||
FILESTATICSYM& fileStaticSym = *(FILESTATICSYM*)dataStart;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
if (!mFailed)
|
||||
Fail(StrFormat("Unknown symbol type '0x%X' in EvaluateLocation", symType));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue