mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-0 corrected decompiler modellock
This commit is contained in:
parent
e5c1a8ebcb
commit
ed46dde304
1 changed files with 2 additions and 1 deletions
|
@ -132,7 +132,8 @@ public class FunctionPrototype {
|
||||||
protoModel = f.getProgram().getCompilerSpec().getDefaultCallingConvention();
|
protoModel = f.getProgram().getCompilerSpec().getDefaultCallingConvention();
|
||||||
}
|
}
|
||||||
hasThis = protoModel.hasThisPointer();
|
hasThis = protoModel.hasThisPointer();
|
||||||
modellock = !f.hasUnknownCallingConventionName();
|
modellock =
|
||||||
|
((modelname != null) && !Function.UNKNOWN_CALLING_CONVENTION_STRING.equals(modelname));
|
||||||
injectname = f.getCallFixup();
|
injectname = f.getCallFixup();
|
||||||
voidinputlock = false;
|
voidinputlock = false;
|
||||||
Parameter returnparam = f.getReturn();
|
Parameter returnparam = f.getReturn();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue