diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2019-10-19 17:29:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-19 17:29:50 +0200 |
| commit | fc85694af6fc5b94e1eb03fb0b6c59789057dff2 (patch) | |
| tree | 76f6ba9ae81b8ad227012eed7cb53aae6d49e5de | |
| parent | bcfa3b744742065dcece35d416e97f91d6d14f41 (diff) | |
| parent | 7796ffdca822bd0fe1215777324ebc7dfdcd849e (diff) | |
| download | miasm-fc85694af6fc5b94e1eb03fb0b6c59789057dff2.tar.gz miasm-fc85694af6fc5b94e1eb03fb0b6c59789057dff2.zip | |
Merge pull request #1081 from themaks/patch-1
Adds a missing import
| -rw-r--r-- | miasm/os_dep/win_api_x86_32.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/os_dep/win_api_x86_32.py b/miasm/os_dep/win_api_x86_32.py index be6e7677..cdf6a48f 100644 --- a/miasm/os_dep/win_api_x86_32.py +++ b/miasm/os_dep/win_api_x86_32.py @@ -36,7 +36,7 @@ except ImportError: print("cannot find crypto, skipping") from miasm.jitter.csts import PAGE_READ, PAGE_WRITE, PAGE_EXEC -from miasm.core.utils import pck16, pck32, hexdump, whoami +from miasm.core.utils import pck16, pck32, hexdump, whoami, int_to_byte from miasm.os_dep.common import heap, windows_to_sbpath from miasm.os_dep.common import set_str_unic, set_str_ansi from miasm.os_dep.common import get_fmt_args as _get_fmt_args |