diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2024-01-07 22:48:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-07 22:48:37 +0100 |
| commit | 3a2fb2472c0e8e01f84ed29be29a929775ed07ab (patch) | |
| tree | 17718031046a1e912072db057993b478aa0ce06e /miasm/analysis/dse.py | |
| parent | e9dee4eb5e8b8dc0b81e22598b754c8df29f1674 (diff) | |
| parent | 2bf07ad1eb835e12b4b3dbaf42f71adf888a8cc1 (diff) | |
| download | focaccia-miasm-3a2fb2472c0e8e01f84ed29be29a929775ed07ab.tar.gz focaccia-miasm-3a2fb2472c0e8e01f84ed29be29a929775ed07ab.zip | |
Merge pull request #1464 from mrexodia/python312
Python 3.12 support
Diffstat (limited to 'miasm/analysis/dse.py')
| -rw-r--r-- | miasm/analysis/dse.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm/analysis/dse.py b/miasm/analysis/dse.py index 5e6c4e8d..11674734 100644 --- a/miasm/analysis/dse.py +++ b/miasm/analysis/dse.py @@ -234,7 +234,7 @@ class DSEEngine(object): def handle(self, cur_addr): r"""Handle destination @cur_addr: Expr of the next address in concrete execution - /!\ cur_addr may be a loc_key + [!] cur_addr may be a loc_key In this method, self.symb is in the "just before branching" state """ @@ -475,7 +475,7 @@ class DSEEngine(object): @cpu: (optional) if set, update registers' value @mem: (optional) if set, update memory value - /!\ all current states will be loss. + [!] all current states will be loss. This function is usually called when states are no more synchronized (at the beginning, returning from an unstubbed syscall, ...) """ |