diff options
Diffstat (limited to 'miasm2/core/asmblock.py')
| -rw-r--r-- | miasm2/core/asmblock.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/core/asmblock.py b/miasm2/core/asmblock.py index 72f259f9..965b22c4 100644 --- a/miasm2/core/asmblock.py +++ b/miasm2/core/asmblock.py @@ -45,7 +45,7 @@ class AsmLabel(object): self.name = name self.attrib = None if offset is None: - self.offset = offset + self.offset = None else: self.offset = int(offset) |