about summary refs log tree commit diff stats
path: root/example/disasm/full.py
diff options
context:
space:
mode:
authorMathieu Geli <mathieu.geli@gmail.com>2015-06-16 14:27:09 +0200
committerMathieu Geli <mathieu.geli@gmail.com>2015-06-16 14:27:09 +0200
commit2c80b067e015ce9df9c6798dc2e2ce6845bc8aae (patch)
tree9f172add9b7de96b31bbad3403c2231499241545 /example/disasm/full.py
parentae3944322330ff5dd5ca6495003f1d0bb611d0f1 (diff)
downloadfocaccia-miasm-2c80b067e015ce9df9c6798dc2e2ce6845bc8aae.tar.gz
focaccia-miasm-2c80b067e015ce9df9c6798dc2e2ce6845bc8aae.zip
Treat properly multiple addresses as advertised
Diffstat (limited to 'example/disasm/full.py')
-rw-r--r--example/disasm/full.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/disasm/full.py b/example/disasm/full.py
index 9e953122..7f523a23 100644
--- a/example/disasm/full.py
+++ b/example/disasm/full.py
@@ -89,7 +89,7 @@ addrs = [int(a, 16) for a in args.address]
 if len(addrs) == 0 and default_addr is not None:
     addrs.append(default_addr)
 for ad in addrs:
-    todo = [(mdis, None, ad)]
+    todo += [(mdis, None, ad)]
 
 done = set()
 all_funcs = set()