From 1c7de06bd0f8482f2ca9982a0dfb9b6ee5ca8299 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Tue, 6 Dec 2016 02:44:11 +0000 Subject: [PATCH] Fix up issue with pointer sizes. Since cls is never used we're not losing information. --- volatility/framework/objects/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/objects/__init__.py b/volatility/framework/objects/__init__.py index b6e6c813d..6ddb22d5e 100644 --- a/volatility/framework/objects/__init__.py +++ b/volatility/framework/objects/__init__.py @@ -176,7 +176,7 @@ class Pointer(Integer): class VolTemplateProxy(interfaces.objects.ObjectInterface.VolTemplateProxy): @classmethod def size(cls, template): - return Integer.VolTemplateProxy.size(cls, template) + return Integer.VolTemplateProxy.size(template) @classmethod def children(cls, template):