Skip to content

Commit 4fe8e23

Browse files
committed
analyzer: remove obsolete 'suspended' parameter from CommandPipeHandler
1 parent d7d9f35 commit 4fe8e23

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

analyzer/windows/analyzer.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1332,7 +1332,6 @@ def _handle_process(self, data):
13321332
"""Request for injection into a process."""
13331333
# Parse the process identifier.
13341334
# PROCESS:1:1824,2856
1335-
suspended = False
13361335
process_id = thread_id = None
13371336
# We parse the process ID.
13381337
pid_s, tid_s = data.split(b",", 1)
@@ -1352,7 +1351,6 @@ def _handle_process(self, data):
13521351
config=self.analyzer.config,
13531352
pid=process_id,
13541353
thread_id=thread_id,
1355-
suspended=suspended,
13561354
)
13571355
filepath = proc.get_filepath() # .encode('utf8', 'replace')
13581356
# if it's a URL analysis, provide the URL to all processes as

0 commit comments

Comments
 (0)