diff options
| author | Camille Mougey <commial@gmail.com> | 2017-03-28 16:07:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-28 16:07:17 +0200 |
| commit | da7b3b3d20b9ec4644d3b38c3ac9d9074680471d (patch) | |
| tree | 68ad3d493cbe69e50ca46a5e9f6aa9a2cff36984 | |
| parent | 411603f8985def77a9785ba65cc6abf8dd8aa919 (diff) | |
| parent | df82c4cd967f269860355ae52a1dbb9901e91a76 (diff) | |
| download | miasm-da7b3b3d20b9ec4644d3b38c3ac9d9074680471d.tar.gz miasm-da7b3b3d20b9ec4644d3b38c3ac9d9074680471d.zip | |
Merge pull request #506 from serpilliere/fix_tipo
Example/full: fix tipo
| -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 e768e21c..79db46d4 100644 --- a/example/disasm/full.py +++ b/example/disasm/full.py @@ -136,7 +136,7 @@ while not finish and todo: if args.recurfunctions: for block in allblocks: instr = block.get_subcall_instr() - if not isntr: + if not instr: continue for dest in instr.getdstflow(mdis.symbol_pool): if not (isinstance(dest, ExprId) and isinstance(dest.name, AsmLabel)): |