diff options
| author | serpilliere <devnull@localhost> | 2012-10-31 15:55:08 +0100 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2012-10-31 15:55:08 +0100 |
| commit | 27fa5b2f879d8a64d15958eec00db628d4c07d06 (patch) | |
| tree | 6ed6f5c28181e532bcaa456053850068e7579e74 | |
| parent | fc258c7428747b43460caa61f5bcd8dee5d46aec (diff) | |
| download | miasm-27fa5b2f879d8a64d15958eec00db628d4c07d06.tar.gz miasm-27fa5b2f879d8a64d15958eec00db628d4c07d06.zip | |
ia32_arch: fix tipo
| -rw-r--r-- | miasm/arch/ia32_arch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/arch/ia32_arch.py b/miasm/arch/ia32_arch.py index dc66fc0f..c81f2a18 100644 --- a/miasm/arch/ia32_arch.py +++ b/miasm/arch/ia32_arch.py @@ -2168,7 +2168,7 @@ class x86_mn: tmp_o = [a2,a1] if c.modifs[se] and size[0] !=size[1]: size[1] = size[0] - if size[0] !=size[1] and not name in ['movzx', 'mozsx']: + if size[0] !=size[1] and not name in ['movzx', 'movsx']: if tmp_order[0][x86_afs.ad]: size[1] = size[0] else: |