mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-1045 fixed VT calling convention apply markup issue
This commit is contained in:
parent
5b30bb95c0
commit
0de0f64a8e
1 changed files with 5 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue