diff options
| author | Ajax <commial@gmail.com> | 2016-06-24 16:48:21 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2016-09-01 17:34:50 +0200 |
| commit | 569db5c25ef951069fbc8fc1cc0cdb9e3d0ae01b (patch) | |
| tree | 2cb7871c4df3ef64533771addcf0f1678b2f3d15 | |
| parent | bd70a088a800ef3cf5e4e4a03752febe90a7cbf5 (diff) | |
| download | miasm-569db5c25ef951069fbc8fc1cc0cdb9e3d0ae01b.tar.gz miasm-569db5c25ef951069fbc8fc1cc0cdb9e3d0ae01b.zip | |
Make return_from_seh breakpoint compliant
| -rw-r--r-- | miasm2/os_dep/win_api_x86_32_seh.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/miasm2/os_dep/win_api_x86_32_seh.py b/miasm2/os_dep/win_api_x86_32_seh.py index 11aca228..cfd83729 100644 --- a/miasm2/os_dep/win_api_x86_32_seh.py +++ b/miasm2/os_dep/win_api_x86_32_seh.py @@ -683,3 +683,6 @@ def return_from_seh(jitter): # - ExceptionCollidedUnwind = 3 raise ValueError("Valid values are ExceptionContinueExecution and " "ExceptionContinueSearch") + + # Jitter's breakpoint compliant + return True |