diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-01-29 08:59:29 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-01-29 09:21:25 +0100 |
| commit | 2129672c245b886a420b3b4ac9f802d104cd1f98 (patch) | |
| tree | 1e333564f0e9dc71f155d3cb1e645b82e0e3423d | |
| parent | b20bbe9ba9d953a311dec4fa2dab076b30c64248 (diff) | |
| download | miasm-2129672c245b886a420b3b4ac9f802d104cd1f98.tar.gz miasm-2129672c245b886a420b3b4ac9f802d104cd1f98.zip | |
Os_dep/Win: Add GetProcAddress lib handler
| -rw-r--r-- | miasm2/os_dep/win_api_x86_32.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/os_dep/win_api_x86_32.py b/miasm2/os_dep/win_api_x86_32.py index a4c07e59..0996d616 100644 --- a/miasm2/os_dep/win_api_x86_32.py +++ b/miasm2/os_dep/win_api_x86_32.py @@ -954,7 +954,7 @@ def kernel32_GetProcAddress(jitter): else: ad = 0 ad = winobjs.runtime_dll.lib_get_add_func(libbase, fname) - + jitter.add_breakpoint(ad, jitter.handle_lib) jitter.func_ret_stdcall(ret_ad, ad) |