From e880dee5aba254811afa0393be9e90e267d8409f Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Mon, 19 Jan 2015 23:58:16 +0000 Subject: [PATCH] Provide a default NativeTable, now that natives can be updated. --- volatility/framework/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/__init__.py b/volatility/framework/__init__.py index f6749a1ee..f4d961d90 100644 --- a/volatility/framework/__init__.py +++ b/volatility/framework/__init__.py @@ -48,7 +48,7 @@ class Context(interfaces.context.ContextInterface): for creating new objects. """ - def __init__(self, natives): + def __init__(self, natives = symbols.native.x86NativeTable): """Initializes the context. This initializes the context and provides a default set of native types for the empty symbol space.