diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-07-27 17:22:19 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-07-27 21:17:54 +0200 |
| commit | e33bffdca01c7528608681e6d79afcb1b46e37de (patch) | |
| tree | a829bb6ea4040bde14b212fa8581fac92bbdea3b /example/ida | |
| parent | b088e965b09abedad4e62664c05b06a65522a80e (diff) | |
| download | miasm-e33bffdca01c7528608681e6d79afcb1b46e37de.tar.gz miasm-e33bffdca01c7528608681e6d79afcb1b46e37de.zip | |
Asmblock: remove disasm engine job_done attribute
WARNING: disasmEngine behaviour modification Before patch: job_done containted the already disassembled addresses. If the user disassembled twice the same addresse, the engine will return empty object on the second call. After patch: If the user disassemble twice the same addresse, the engine will return result of the disassembling in both cases.
Diffstat (limited to 'example/ida')
| -rw-r--r-- | example/ida/ctype_propagation.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/example/ida/ctype_propagation.py b/example/ida/ctype_propagation.py index a48179e9..cb342213 100644 --- a/example/ida/ctype_propagation.py +++ b/example/ida/ctype_propagation.py @@ -57,7 +57,6 @@ Dependency Graph Settings def get_block(ir_arch, mdis, addr): """Get IRBlock at address @addr""" - mdis.job_done.clear() lbl = ir_arch.get_label(addr) if not lbl in ir_arch.blocks: block = mdis.dis_block(lbl.offset) |