mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-12-07 03:21:46 +00:00
GP-1045 fixed VT calling convention apply markup issue
This commit is contained in:
parent
5b30bb95c0
commit
0de0f64a8e
@ -469,6 +469,11 @@ public class FunctionSignatureStringable extends Stringable {
|
||||
if (!returnInfo.isEquivalent(other.returnInfo)) { // storage not checked
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!callingConventionName.equals(other.callingConventionName)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
int paramCnt = parameterInfos.size();
|
||||
if (paramCnt != other.parameterInfos.size()) {
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user