diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-08-15 23:49:05 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-08-18 14:22:53 +0200 |
| commit | d90946d718b516aa6a86ae64c032a52f24fd1c0e (patch) | |
| tree | c84fc791822d1e29a8050743b06508d4e814c1a5 | |
| parent | c2b3dceb4be16c41c80d790e0274d935035b214b (diff) | |
| download | miasm-d90946d718b516aa6a86ae64c032a52f24fd1c0e.tar.gz miasm-d90946d718b516aa6a86ae64c032a52f24fd1c0e.zip | |
Win_api: updt r0 dbg list
Diffstat (limited to '')
| -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 073bd852..0c27652a 100644 --- a/miasm2/os_dep/win_api_x86_32.py +++ b/miasm2/os_dep/win_api_x86_32.py @@ -546,7 +546,7 @@ def kernel32_CreateFile(jitter, funcname, get_str): log.debug("%r %r", fname.lower(), winobjs.module_path.lower()) is_original_file = fname.lower() == winobjs.module_path.lower() - if fname.upper() in [r"\\.\SICE", r"\\.\NTICE", r"\\.\SIWVID"]: + if fname.upper() in [r"\\.\SICE", r"\\.\NTICE", r"\\.\SIWVID", r'\\.\SIWDEBUG']: pass elif fname.upper() in ['NUL']: ret = winobjs.module_cur_hwnd |