diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-03-27 21:29:29 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-03-27 21:29:29 +0200 |
| commit | df82c4cd967f269860355ae52a1dbb9901e91a76 (patch) | |
| tree | 68ad3d493cbe69e50ca46a5e9f6aa9a2cff36984 /example/disasm/full.py | |
| parent | 411603f8985def77a9785ba65cc6abf8dd8aa919 (diff) | |
| download | miasm-df82c4cd967f269860355ae52a1dbb9901e91a76.tar.gz miasm-df82c4cd967f269860355ae52a1dbb9901e91a76.zip | |
Example/full: fix tipo
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 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)): |