diff options
| author | serpilliere <devnull@localhost> | 2012-10-30 11:05:20 +0100 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2012-10-30 11:05:20 +0100 |
| commit | 1cc3cd4efe85ce967771b865f1b8ac8eeae4e14d (patch) | |
| tree | c3bcb41c0b97f4e663d64b5e97f51796e46afde2 | |
| parent | 02d39c007c686101d6da013f6eb05d648bc315a7 (diff) | |
| download | miasm-1cc3cd4efe85ce967771b865f1b8ac8eeae4e14d.tar.gz miasm-1cc3cd4efe85ce967771b865f1b8ac8eeae4e14d.zip | |
ia32_arch: del unused attribute
| -rw-r--r-- | miasm/core/asmbloc.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/miasm/core/asmbloc.py b/miasm/core/asmbloc.py index c7ce5b00..c1ce2f75 100644 --- a/miasm/core/asmbloc.py +++ b/miasm/core/asmbloc.py @@ -48,7 +48,6 @@ def is_int(a): class asm_label: def __init__(self, name = "", offset = None): - self.next = "next" self.fixedblocs = False if is_int(name): name = "loc_%.16X"%(int(name)&0xFFFFFFFFFFFFFFFF) |