mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GP-822: Fixed issue with GDB when launched process terminates immediately.
This commit is contained in:
parent
fcc0d97ae0
commit
cac43030eb
5 changed files with 34 additions and 12 deletions
|
@ -165,7 +165,9 @@ public class DebuggerCallbackReorderer implements DebuggerModelListener {
|
|||
TargetObject obj = (TargetObject) val;
|
||||
if (!PathUtils.isLink(object.getPath(), ent.getKey(), obj.getPath())) {
|
||||
ObjectRecord rec = records.get(obj);
|
||||
rec.added();
|
||||
if (rec != null) {
|
||||
rec.added();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue