mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-27 23:17:03 +08:00
GP-6357 fixed issue that caused infinite recursion in getFunctionCallMap
method.
This commit is contained in:
@@ -474,6 +474,7 @@ public class RecoveredClassHelper {
|
|||||||
//TODO: the above continue is preventing the nulls and exts here - do we want this?
|
//TODO: the above continue is preventing the nulls and exts here - do we want this?
|
||||||
// or do we want another map/option?
|
// or do we want another map/option?
|
||||||
functionCallMap.put(instruction.getMinAddress(), calledFunction);
|
functionCallMap.put(instruction.getMinAddress(), calledFunction);
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
if (instruction.getFlowOverride().equals(FlowOverride.CALL_RETURN)) {
|
if (instruction.getFlowOverride().equals(FlowOverride.CALL_RETURN)) {
|
||||||
Reference reference = instruction.getPrimaryReference(0);
|
Reference reference = instruction.getPrimaryReference(0);
|
||||||
|
|||||||
Reference in New Issue
Block a user