diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-06-16 15:52:26 +0200 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-06-16 15:52:26 +0200 |
| commit | 95f6c924cbe662dff92a2644f247889d3f2e1f8f (patch) | |
| tree | 9f172add9b7de96b31bbad3403c2231499241545 /example/disasm/full.py | |
| parent | 5be37436006c6d4578862d879c5ab7bebe8447ff (diff) | |
| parent | 2c80b067e015ce9df9c6798dc2e2ce6845bc8aae (diff) | |
| download | miasm-95f6c924cbe662dff92a2644f247889d3f2e1f8f.tar.gz miasm-95f6c924cbe662dff92a2644f247889d3f2e1f8f.zip | |
Merge pull request #179 from gelim/master
typofix and logic error
Diffstat (limited to 'example/disasm/full.py')
| -rw-r--r-- | example/disasm/full.py | 2 |
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() |