From c9657d8b5e4380848a992d100d8072f49d835637 Mon Sep 17 00:00:00 2001 From: Camille Mougey Date: Wed, 24 Dec 2014 18:50:42 +0100 Subject: Loader/PE: Update vm_load_pe_lib* APIs to take a VmMngr instance in input --- miasm2/analysis/sandbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'miasm2/analysis/sandbox.py') 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(): -- cgit 1.4.1