Skip to content

Commit

Permalink
Fix incorrect variable in log statement (#1057)
Browse files Browse the repository at this point in the history
Fixes #1056
  • Loading branch information
zachriggle authored Oct 23, 2017
1 parent df7c1fe commit 9102540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pwnlib/dynelf.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def _find_linkmap(self, pltgot=None, debug=None):
if debug:
w.status("r_debug.linkmap")
linkmap = self.leak.field(debug, r_debug.r_map)
w.status("r_debug.linkmap %#x" % result)
w.status("r_debug.linkmap %#x" % linkmap)

if not linkmap:
w.failure("Could not find DT_PLTGOT or DT_DEBUG")
Expand Down

0 comments on commit 9102540

Please sign in to comment.