Skip to content

Commit

Permalink
Update rex for angr/claripy#545 (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin authored Oct 4, 2024
1 parent 5817d5f commit ec9e125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rex/crash.py
Original file line number Diff line number Diff line change
Expand Up @@ -1243,7 +1243,7 @@ def _reconstrain_flag_data(self, state):# pylint:disable=no-self-use
cons = state.solver.constraints
new_cons = []
for c in cons:
new_c = c.replace_dict(replace_dict)
new_c = claripy.replace_dict(c, replace_dict)
new_cons.append(new_c)
state.release_plugin("solver")
state.add_constraints(*new_cons)
Expand Down

0 comments on commit ec9e125

Please sign in to comment.