GP-3127 - PDB - Override overzealous thunk detection

This commit is contained in:
ghizard
2023-02-22 15:10:38 -05:00
parent bdc6f56c40
commit 407fe706d8
@@ -258,10 +258,12 @@ public class FunctionSymbolApplier extends MsSymbolApplier {
} }
boolean succeededSetFunctionSignature = false; boolean succeededSetFunctionSignature = false;
if (!function.isThunk() && if (thunkSymbol == null) {
function.getSignatureSource().isLowerPriorityThan(SourceType.IMPORTED)) { function.setThunkedFunction(null);
succeededSetFunctionSignature = setFunctionDefinition(monitor); if (function.getSignatureSource().isLowerPriorityThan(SourceType.IMPORTED)) {
function.setNoReturn(isNonReturning); succeededSetFunctionSignature = setFunctionDefinition(monitor);
function.setNoReturn(isNonReturning);
}
} }
// If signature was set, then override existing primary mangled symbol with // If signature was set, then override existing primary mangled symbol with
// the global symbol that provided this signature so that Demangler does not overwrite // the global symbol that provided this signature so that Demangler does not overwrite