Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Kyle committed Apr 16, 2024
1 parent 68402fa commit 22ff057
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion angrop/rop_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ def make_symbolic_state(project, reg_set, extra_reg_set=None, stack_gsize=80):
converts an input state into a state with symbolic registers
:return: the symbolic state
"""
if extra_reg_set is None: extra_reg_set = set()
if extra_reg_set is None:
extra_reg_set = set()
input_state = make_initial_state(project, stack_gsize)
symbolic_state = input_state.copy()
# overwrite all registers
Expand Down

0 comments on commit 22ff057

Please sign in to comment.