1
0
Fork 0

Merge pull request #2935 from owerosu/development

Fix undecorated label display when it comes from exported symbols.
This commit is contained in:
Duncan Ogilvie 2022-09-24 22:18:15 +02:00 committed by GitHub
commit d78ec69b9c
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -37,6 +37,7 @@ bool SymbolFromAddressExact(duint address, SymbolInfo & symInfo)
symInfo.size = 0;
symInfo.disp = 0;
symInfo.decoratedName = modExport->name;
symInfo.undecoratedName = modExport->undecoratedName;
symInfo.publicSymbol = true;
return true;
}