mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
Merge remote-tracking branch 'origin/GP-1045_ghidra007_addedMissingCallConvCheckInFunctionSigEquals'
This commit is contained in:
commit
11ceae4cae
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
|
if (!returnInfo.isEquivalent(other.returnInfo)) { // storage not checked
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!callingConventionName.equals(other.callingConventionName)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
int paramCnt = parameterInfos.size();
|
int paramCnt = parameterInfos.size();
|
||||||
if (paramCnt != other.parameterInfos.size()) {
|
if (paramCnt != other.parameterInfos.size()) {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue