mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-28 15:36:33 +08:00
GP-1042 corrected source type for return-param
This commit is contained in:
+4
-2
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user