diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2014-12-24 18:50:42 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2014-12-24 18:50:42 +0100 |
| commit | c9657d8b5e4380848a992d100d8072f49d835637 (patch) | |
| tree | 793ac2b87d54d0396f2d48ae147785ea3ed55703 /miasm2/analysis/sandbox.py | |
| parent | 50e47f4af213d71352b7cefc812630af3d2eb09e (diff) | |
| download | miasm-c9657d8b5e4380848a992d100d8072f49d835637.tar.gz miasm-c9657d8b5e4380848a992d100d8072f49d835637.zip | |
Loader/PE: Update vm_load_pe_lib* APIs to take a VmMngr instance in input
Diffstat (limited to 'miasm2/analysis/sandbox.py')
| -rw-r--r-- | miasm2/analysis/sandbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/analysis/sandbox.py b/miasm2/analysis/sandbox.py index ed178f8a..ca6dcfe6 100644 --- a/miasm2/analysis/sandbox.py +++ b/miasm2/analysis/sandbox.py @@ -173,7 +173,7 @@ class OS_Win(OS): all_pe = [] # Load libs in memory - all_pe = vm_load_pe_libs(self.ALL_IMP_DLL, libs) + all_pe = vm_load_pe_libs(self.jitter.vm, self.ALL_IMP_DLL, libs) # Patch libs imports for pe in all_pe.values(): |