diff options
| author | Camille Mougey <commial@gmail.com> | 2016-01-30 22:54:31 +0100 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2016-01-30 22:54:31 +0100 |
| commit | 3672de7c319f39273cb7e34797cb928f424ff7c4 (patch) | |
| tree | b2b8f867dbec627940b2be9406ae87a009c731bf /miasm2/jitter/loader/pe.py | |
| parent | dbf10438741443d59b8db500905d3d110a34c73c (diff) | |
| parent | d1eaeba1aab93a918d858750e2cc11a7ea283fbd (diff) | |
| download | miasm-3672de7c319f39273cb7e34797cb928f424ff7c4.tar.gz miasm-3672de7c319f39273cb7e34797cb928f424ff7c4.zip | |
Merge pull request #314 from serpilliere/graph_ir_asm
Graph ir asm
Diffstat (limited to 'miasm2/jitter/loader/pe.py')
| -rw-r--r-- | miasm2/jitter/loader/pe.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/jitter/loader/pe.py b/miasm2/jitter/loader/pe.py index 1c811101..89876a92 100644 --- a/miasm2/jitter/loader/pe.py +++ b/miasm2/jitter/loader/pe.py @@ -228,7 +228,7 @@ def vm_load_pe_libs(vm, libs_name, libs, lib_path_base, **kargs): @libs_name: list of str @libs: libimp_pe instance @lib_path_base: (optional) DLLs relative path - Return a dictionnary Filename -> PE instances + Return a dictionary Filename -> PE instances Extra arguments are passed to vm_load_pe_lib """ return {fname: vm_load_pe_lib(vm, fname, libs, lib_path_base, **kargs) @@ -455,7 +455,7 @@ class libimp_pe(libimp): def vm_load_pe_and_dependencies(vm, fname, name2module, runtime_lib, lib_path_base, **kwargs): - """Load a binary and all its dependencies. Returns a dictionnary containing + """Load a binary and all its dependencies. Returns a dictionary containing the association between binaries names and it's pe object @vm: virtual memory manager instance |