mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GP-0: Fix NPEs when closing the Debugger tool.
This commit is contained in:
parent
5e390abb1a
commit
84e9578e67
1 changed files with 5 additions and 3 deletions
|
@ -108,9 +108,11 @@ public class TraceRmiPlugin extends Plugin implements InternalTraceRmiService {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (ConnAndTarget cat : targets) {
|
if (targetService != null) {
|
||||||
targetService.publishTarget(cat.target);
|
for (ConnAndTarget cat : targets) {
|
||||||
listeners.invoke().targetPublished(cat.conn, cat.target);
|
targetService.publishTarget(cat.target);
|
||||||
|
listeners.invoke().targetPublished(cat.conn, cat.target);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue