mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
override check in deindirect
This commit is contained in:
parent
af3fdf5391
commit
66df643877
3 changed files with 8 additions and 2 deletions
|
@ -117,7 +117,8 @@ void Override::insertProtoOverride(const Address &callpoint,FuncProto *p)
|
|||
if (iter != protoover.end()) // Check for pre-existing override
|
||||
delete (*iter).second; // and delete it
|
||||
|
||||
protoover[callpoint] = p;
|
||||
p->setOverride(true); // Mark this as an override
|
||||
protoover[callpoint] = p; // Take ownership of the object
|
||||
}
|
||||
|
||||
/// \brief Flag an indirect jump for multistage analysis
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue