about summary refs log tree commit diff
diff options
context:
space:
mode:
m---------custom_mutators/grammar_mutator/grammar_mutator0
m---------qemu_mode/qemuafl0
-rw-r--r--unicorn_mode/helper_scripts/unicorn_loader.py8
3 files changed, 4 insertions, 4 deletions
diff --git a/custom_mutators/grammar_mutator/grammar_mutator b/custom_mutators/grammar_mutator/grammar_mutator
-Subproject b79d51a8daccbd7a693f9b6765c81ead14f28e2
+Subproject b3c4fcfa6ae28918bc410f7747135eafd4fb726
diff --git a/qemu_mode/qemuafl b/qemu_mode/qemuafl
-Subproject d73b0336b451fd034e5f469089fb7ee96c80adf
+Subproject 21ff34383764a8c6f66509b3b8d5282468c721e
diff --git a/unicorn_mode/helper_scripts/unicorn_loader.py b/unicorn_mode/helper_scripts/unicorn_loader.py
index 58c968fb..4f82d0a3 100644
--- a/unicorn_mode/helper_scripts/unicorn_loader.py
+++ b/unicorn_mode/helper_scripts/unicorn_loader.py
@@ -194,10 +194,10 @@ class AflUnicornEngine(Uc):
         self.__load_registers(regs, reg_map, debug_print)
         # If we have extra FLOATING POINT regs, load them in!
         if 'regs_extended' in context:
-		if context['regs_extended']:
-		    regs_extended = context['regs_extended']
-		    reg_map = self.__get_registers_extended(self._arch_str)
-		    self.__load_registers(regs_extended, reg_map, debug_print)
+            if context['regs_extended']:
+                regs_extended = context['regs_extended']
+                reg_map = self.__get_registers_extended(self._arch_str)
+                self.__load_registers(regs_extended, reg_map, debug_print)
 
         # For ARM, sometimes the stack pointer is erased ??? (I think I fixed this (issue with ordering of dumper.py, I'll keep the write anyways)
         if self.__get_arch_and_mode(self.get_arch_str())[0] == UC_ARCH_ARM: