mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-5203: strip DF refs
This commit is contained in:
parent
2589aae3a4
commit
6cf1f71204
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ def put_processes_exdi(state, radix):
|
|||
radix = util.get_convenience_variable('output-radix')
|
||||
keys = []
|
||||
result = util.dbg._base.cmd("!process 0 0")
|
||||
lines = result.split("\n")
|
||||
lines = list(x for x in result.splitlines() if "DeepFreeze" not in x)
|
||||
count = int((len(lines)-2)/5)
|
||||
for i in range(0,count):
|
||||
l1 = lines[i*5+1].strip().split() # PROCESS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue