Skip to content

Commit

Permalink
Changed the lines from 4 to 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip committed Nov 1, 2023
1 parent da4a4bf commit fc95883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzer/python/ikos/scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ def extract_bitcode(exe_path, bc_path):
output = check_output(cmd)
section_content = b''

for line in itertools.islice(output.splitlines(), 4, None):
for line in itertools.islice(output.splitlines(), 3, None):
n = line.find(b' ', 1)
line = line[n + 1:n + 36]
for item in line.split(b' '):
Expand Down

0 comments on commit fc95883

Please sign in to comment.