From 2c607473559c017606495ed9948307601df2ce20 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Wed, 14 Dec 2016 00:27:41 +0000 Subject: [PATCH] Minor fix, small but might as well fix it. --- volatility/framework/interfaces/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/interfaces/objects.py b/volatility/framework/interfaces/objects.py index 598069968..836c890fe 100644 --- a/volatility/framework/interfaces/objects.py +++ b/volatility/framework/interfaces/objects.py @@ -71,7 +71,7 @@ class ObjectInterface(validity.ValidityRoutines, metaclass = ABCMeta): mask = context.memory[object_info.layer_name].address_mask normalized_offset = object_info.offset & mask - self._vol = collections.ChainMap({}, object_info, {'type_name': type_name}, {'offset': normalized_offset}, + self._vol = collections.ChainMap({}, object_info, {'type_name': type_name, 'offset': normalized_offset}, kwargs) self._context = context