diff options
| author | Camille Mougey <commial@gmail.com> | 2016-09-07 09:01:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-07 09:01:01 +0200 |
| commit | 292a5d639cdb64b0b2eb1d855cf93dc4d3c4d1d9 (patch) | |
| tree | c82a3080f049c838006755da6fdab5aaca9feab5 /miasm2/analysis/sandbox.py | |
| parent | 0ba30f79356130d46db669b4c933ba508e6a63a4 (diff) | |
| parent | 180ef6b0ed3561e3d770b80d6cc79c4f77941cd6 (diff) | |
| download | miasm-292a5d639cdb64b0b2eb1d855cf93dc4d3c4d1d9.tar.gz miasm-292a5d639cdb64b0b2eb1d855cf93dc4d3c4d1d9.zip | |
Merge pull request #422 from serpilliere/fix_seh_tib
Fix seh tib
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 5132406c..87e84caf 100644 --- a/miasm2/analysis/sandbox.py +++ b/miasm2/analysis/sandbox.py @@ -228,8 +228,8 @@ class OS_Win(OS): win_api_x86_32_seh.main_pe = self.pe win_api_x86_32.winobjs.hcurmodule = self.pe.NThdr.ImageBase win_api_x86_32_seh.name2module = self.name2module - win_api_x86_32_seh.init_seh(self.jitter) win_api_x86_32_seh.set_win_fs_0(self.jitter) + win_api_x86_32_seh.init_seh(self.jitter) self.entry_point = self.pe.rva2virt( self.pe.Opthdr.AddressOfEntryPoint) |