mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-1042 corrected source type for return-param
This commit is contained in:
parent
597a66cd11
commit
64d5090d54
1 changed files with 4 additions and 2 deletions
|
@ -169,8 +169,10 @@ public class ReturnParameterDB extends ParameterDB {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SourceType getSource() {
|
public SourceType getSource() {
|
||||||
// VARDO: What source-type should be used ?
|
if (dataType == null || Undefined.isUndefined(dataType)) {
|
||||||
return function.getSymbol().getSource();
|
return SourceType.DEFAULT;
|
||||||
|
}
|
||||||
|
return function.getSignatureSource();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue