Fix critical typo in intel translation layer.

This commit is contained in:
Mike Auty
2015-01-04 04:55:39 +00:00
parent 95238f7f01
commit 0046ffc0d7
+1 -1
View File
@@ -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