diff options
| author | serpilliere <devnull@localhost> | 2012-12-18 13:38:28 +0100 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2012-12-18 13:38:28 +0100 |
| commit | 9813a49e961b674ff0108d0f60c968de17de8a1b (patch) | |
| tree | 24f67fe89d7da3efe2ebc3f94bed74c4ba442300 | |
| parent | e3b73a4c1e1b8b3a5e1a1d1c1bd72ebfce387725 (diff) | |
| download | miasm-9813a49e961b674ff0108d0f60c968de17de8a1b.tar.gz miasm-9813a49e961b674ff0108d0f60c968de17de8a1b.zip | |
ia32_arch: fix get_label (louis granboulan)
| -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 929db6eb..3f6a5af4 100644 --- a/miasm/arch/ia32_arch.py +++ b/miasm/arch/ia32_arch.py @@ -210,7 +210,7 @@ def is_reg(a): return True def get_label(a): - if x86_afs.ad in a: + if x86_afs.ad in a and a[x86_afs.ad]: return None if x86_afs.imm in a: return None |