mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +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();
|
||||
}
|
||||
hasThis = protoModel.hasThisPointer();
|
||||
modellock = !f.hasUnknownCallingConventionName();
|
||||
modellock =
|
||||
((modelname != null) && !Function.UNKNOWN_CALLING_CONVENTION_STRING.equals(modelname));
|
||||
injectname = f.getCallFixup();
|
||||
voidinputlock = false;
|
||||
Parameter returnparam = f.getReturn();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue