Skip to content

Commit

Permalink
Merge pull request #91 from angr/fix/wrap
Browse files Browse the repository at this point in the history
Fix wrapping for RopValue pointers
  • Loading branch information
Kyle-Kyle authored Mar 29, 2024
2 parents 6c292d1 + 0baea58 commit cdc3029
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion angrop/rop_value.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def is_register(self):
def concreted(self):
assert not self._value.symbolic
if self.rebase:
return self._code_base + self._value.concrete_value
return (self._code_base + self._value).concrete_value
return self._value.concrete_value

@property
Expand Down

0 comments on commit cdc3029

Please sign in to comment.