diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-01-30 14:56:01 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-01-30 21:10:01 +0100 |
| commit | 3bf16e07198476e614462cb189c7f0ce7a91e444 (patch) | |
| tree | 12e9aafda5e40182a3f00a65a50d1d2eaf1aa7d2 /miasm2/jitter/loader/pe.py | |
| parent | 1cb9cbcc2d71d76faf10d7b822f29c035a758343 (diff) | |
| download | miasm-3bf16e07198476e614462cb189c7f0ce7a91e444.tar.gz miasm-3bf16e07198476e614462cb189c7f0ce7a91e444.zip | |
Tipo: dictionary
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 |