Skip to content

Commit 4150acd

Browse files
committed
fix unused var
1 parent 123ca91 commit 4150acd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

analyzer/windows/lib/api/process.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -890,13 +890,13 @@ def inject(self, interest=None, nosleepskip=False):
890890
bin_name = LOADER64_NAME
891891
dll = CAPEMON64_NAME
892892
bit_str = "64-bit"
893-
side_dll = SIDELOADER64_NAME
893+
# side_dll = SIDELOADER64_NAME
894894
else:
895895
ttd_name = TTD32_NAME
896896
bin_name = LOADER32_NAME
897897
dll = CAPEMON32_NAME
898898
bit_str = "32-bit"
899-
side_dll = SIDELOADER32_NAME
899+
# side_dll = SIDELOADER32_NAME
900900

901901
bin_name = os.path.join(Path.cwd(), bin_name)
902902
dll = os.path.join(Path.cwd(), dll)

0 commit comments

Comments
 (0)