diff options
| author | Camille Mougey <commial@gmail.com> | 2015-06-10 14:10:41 +0200 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2015-06-10 14:10:41 +0200 |
| commit | e4557a93d4bafb3ae86a0fc5280592ee98c1fb9f (patch) | |
| tree | a5d2d264886e3764004238ea730565739aade70b | |
| parent | eb85ae0db115b40190446c0aa841e8a1b562eece (diff) | |
| parent | 836b83c8a4883d1aba928392fcf7741a2678826e (diff) | |
| download | miasm-e4557a93d4bafb3ae86a0fc5280592ee98c1fb9f.tar.gz miasm-e4557a93d4bafb3ae86a0fc5280592ee98c1fb9f.zip | |
Merge pull request #174 from serpilliere/fix_dis_overlap
Core/Asmbloc: fix split_bloc with instruction overlapping
| -rw-r--r-- | miasm2/core/asmbloc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/core/asmbloc.py b/miasm2/core/asmbloc.py index 1505bebc..a5dd8142 100644 --- a/miasm2/core/asmbloc.py +++ b/miasm2/core/asmbloc.py @@ -466,7 +466,7 @@ def split_bloc(mnemo, attrib, pool_bin, blocs, log_asmbloc.debug("split bloc %x", off) if new_b is None: log_asmbloc.error("cannot split %x!!", off) - break + continue if dis_bloc_callback: offsets_to_dis = set( [x.label.offset for x in new_b.bto |