Skip to content

Commit c0c7119

Browse files
authored
Update volatility3/framework/plugins/windows/thrdscan.py
1 parent 718f8ca commit c0c7119

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

volatility3/framework/plugins/windows/thrdscan.py

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -143,18 +143,8 @@ def gather_thread_info(
143143
else None
144144
)
145145
else:
146-
vads = None
147-
148-
start_path = (
149-
pe_symbols.PESymbols.filepath_for_address(vads, thread_start_addr)
150-
if vads
151-
else None
152-
)
153-
win32start_path = (
154-
pe_symbols.PESymbols.filepath_for_address(vads, thread_win32start_addr)
155-
if vads
156-
else None
157-
)
146+
start_path = None
147+
win32start_path = None
158148

159149
return cls.ThreadInfo(
160150
thread_offset,

0 commit comments

Comments
 (0)