diff options
| author | Ajax <commial@gmail.com> | 2016-06-23 17:40:42 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2016-09-01 14:44:38 +0200 |
| commit | 416cb0fe68df605375eac72f0a85ee17bfcc7f6d (patch) | |
| tree | 83a781a7f25d77eaf1e885d48910701aea9a7d44 | |
| parent | 21a3b3f9ad4fcd38b27c3fbc9795e72ee8b41e94 (diff) | |
| download | miasm-416cb0fe68df605375eac72f0a85ee17bfcc7f6d.tar.gz miasm-416cb0fe68df605375eac72f0a85ee17bfcc7f6d.zip | |
Useless variable alias
| -rw-r--r-- | miasm2/os_dep/win_api_x86_32_seh.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/miasm2/os_dep/win_api_x86_32_seh.py b/miasm2/os_dep/win_api_x86_32_seh.py index da8df7d7..5cf96234 100644 --- a/miasm2/os_dep/win_api_x86_32_seh.py +++ b/miasm2/os_dep/win_api_x86_32_seh.py @@ -676,12 +676,11 @@ def return_from_seh(jitter): if jitter.cpu.EAX == 0x0: # ExceptionContinueExecution - ctxt_ptr = context_address - log.info('Seh continues Context: %x', ctxt_ptr) + log.info('Seh continues Context: %x', context_address) # Get registers changes # ctxt_str = jitter.vm.get_mem(ctxt_ptr, 0x2cc) - ctxt2regs(jitter, ctxt_ptr) + ctxt2regs(jitter, context_address) jitter.pc = jitter.cpu.EIP log.info('Context::Eip: %x', jitter.pc) |