mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-13 21:27:39 +02:00
Fix critical typo in intel translation layer.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user