diff options
| author | Maxime Meignan <meignanmaxime@hotmail.fr> | 2019-10-19 09:45:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-19 09:45:40 +0200 |
| commit | 7796ffdca822bd0fe1215777324ebc7dfdcd849e (patch) | |
| tree | 76f6ba9ae81b8ad227012eed7cb53aae6d49e5de | |
| parent | bcfa3b744742065dcece35d416e97f91d6d14f41 (diff) | |
| download | miasm-7796ffdca822bd0fe1215777324ebc7dfdcd849e.tar.gz miasm-7796ffdca822bd0fe1215777324ebc7dfdcd849e.zip | |
Adds a forgotten 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 |