Fix a typo introduced in 5362e2094e.

This commit is contained in:
Mike Auty
2019-09-08 01:58:46 +01:00
parent 189b8c4d69
commit 3318e9c4a5
@@ -216,7 +216,8 @@ class Handles(interfaces_plugins.PluginInterface):
if not self.context.layers[virtual].is_valid(offset):
return
table = ntkrnlmp.object(object_type = "array", offset = offset, subtype = subtype, count = int(count))
table = ntkrnlmp.object(
object_type = "array", offset = offset, subtype = subtype, count = int(count), absolute = True)
layer_object = self.context.layers[virtual]
masked_offset = (offset & layer_object.maximum_address)