Skip to content

Commit

Permalink
Merge pull request #2 from jkrshnmenon/fix-bbl_history-in-output
Browse files Browse the repository at this point in the history
Fix bug in symbolic_execution.py
  • Loading branch information
jkrshnmenon authored Feb 26, 2022
2 parents 9b647af + c5fe9cd commit 01f67a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arbiter/master_chief/symbolic_execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ def verify_one(self, report, start, block_dict):
return None

output = {'function': first_target.addr, 'bbl': report.site.bbl,
'bbl_history': list(sat_states[0].state.history.bbl_addrs),
'bbl_history': list(sat_states[0].history.bbl_addrs),
'callstack': [x.current_function_address for x in sat_states[0].callstack]
}
if report.site.callee == 'EOF':
Expand Down

0 comments on commit 01f67a7

Please sign in to comment.