diff options
| author | Aymeric Vincent <aymeric.vincent@cea.fr> | 2018-02-22 09:27:14 +0100 |
|---|---|---|
| committer | Aymeric Vincent <aymeric.vincent@cea.fr> | 2018-02-22 09:27:14 +0100 |
| commit | 2be5050edfdcec81f59e491d4e51c98bc9eec767 (patch) | |
| tree | a1cdde57d81fa7acab3c0f72e7aa539858c64c29 /miasm2/analysis/sandbox.py | |
| parent | c27706033ac597d22ce0a6e5eb85caa970ed3e29 (diff) | |
| download | miasm-2be5050edfdcec81f59e491d4e51c98bc9eec767.tar.gz miasm-2be5050edfdcec81f59e491d4e51c98bc9eec767.zip | |
Set CALL_FINISH_ADDR to 0x13371acc to be 4 bytes aligned
Diffstat (limited to 'miasm2/analysis/sandbox.py')
| -rw-r--r-- | miasm2/analysis/sandbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/analysis/sandbox.py b/miasm2/analysis/sandbox.py index 27f08dff..086473b0 100644 --- a/miasm2/analysis/sandbox.py +++ b/miasm2/analysis/sandbox.py @@ -14,7 +14,7 @@ class Sandbox(object): Parent class for Sandbox abstraction """ - CALL_FINISH_ADDR = 0x1337babe + CALL_FINISH_ADDR = 0x13371acc @staticmethod def code_sentinelle(jitter): |