From 9de6345a833e3e3f203b5684cb30ea359661d44e Mon Sep 17 00:00:00 2001 From: cloud Date: Wed, 29 Mar 2017 12:21:40 -0500 Subject: [PATCH] @takes_address already performs l2() so doing it twice breaks this command (#194) --- pwndbg/ida.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pwndbg/ida.py b/pwndbg/ida.py index 9a9e71add..171de4a8d 100644 --- a/pwndbg/ida.py +++ b/pwndbg/ida.py @@ -130,7 +130,6 @@ def base(): @withIDA @takes_address def Comment(addr): - addr = l2r(addr) return _ida.GetCommentEx(addr, 0) or _ida.GetCommentEx(addr)