mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-0 Corrected decompiler bug introduced with GP-1633 affecting calling
convention used. (Closes #5268)
This commit is contained in:
parent
68c5e3990e
commit
6799c19e19
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ public class FunctionPrototype {
|
||||||
*/
|
*/
|
||||||
public FunctionPrototype(FunctionSignature proto, CompilerSpec cspec,
|
public FunctionPrototype(FunctionSignature proto, CompilerSpec cspec,
|
||||||
boolean voidimpliesdotdotdot) {
|
boolean voidimpliesdotdotdot) {
|
||||||
modelname = proto.getName();
|
modelname = proto.getCallingConventionName();
|
||||||
PrototypeModel model = cspec.matchConvention(modelname);
|
PrototypeModel model = cspec.matchConvention(modelname);
|
||||||
localsyms = null;
|
localsyms = null;
|
||||||
injectname = null;
|
injectname = null;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue