diff options
| author | Camille Mougey <commial@gmail.com> | 2019-12-11 14:59:49 +0100 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2019-12-11 14:59:49 +0100 |
| commit | 0973c635bfea3a45b00dc18f1cd1452eb1493bb8 (patch) | |
| tree | 42f4c2fc2a1afa49f8a8f2072c53bc27060a5dc6 | |
| parent | a900c85a32e1504da96e9ffe7138f85e13ebee04 (diff) | |
| download | miasm-0973c635bfea3a45b00dc18f1cd1452eb1493bb8.tar.gz miasm-0973c635bfea3a45b00dc18f1cd1452eb1493bb8.zip | |
DSE: on mem_read, use parent behavior instead of no treatment
credits @nofiv
| -rw-r--r-- | miasm/analysis/dse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/analysis/dse.py b/miasm/analysis/dse.py index 2c2b41f4..3a0482a3 100644 --- a/miasm/analysis/dse.py +++ b/miasm/analysis/dse.py @@ -109,7 +109,7 @@ class ESETrackModif(EmulatedSymbExec): def mem_read(self, expr_mem): if not expr_mem.ptr.is_int(): - return expr_mem + return super(ESETrackModif, self).mem_read(expr_mem) dst_addr = int(expr_mem.ptr) # Split access in atomic accesses |