mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-13 05:07:38 +02:00
Fix a typo introduced in 5362e2094e.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user