From 0046ffc0d79675b99f779105ff700e2475c9f9f3 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sun, 4 Jan 2015 04:55:39 +0000 Subject: [PATCH] Fix critical typo in intel translation layer. --- volatility/framework/layers/intel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/layers/intel.py b/volatility/framework/layers/intel.py index c9f46c103..d72eb1079 100644 --- a/volatility/framework/layers/intel.py +++ b/volatility/framework/layers/intel.py @@ -91,7 +91,7 @@ class Intel(interfaces.layers.TranslationLayerInterface): def is_valid(self, offset): """Returns whether the address offset can be translated to a valid address""" try: - self._traslate(offset) + self._translate(offset) except exceptions.InvalidAddressException: return False return True