pass native_types to KdbgIntermedSymbols.create() instead of table_mapping

This commit is contained in:
Michael Ligh
2018-06-12 08:41:37 +01:00
committed by Mike Auty
parent ae9d7dbc86
commit 7ae0d654c2
+2 -2
View File
@@ -37,13 +37,13 @@ class Info(plugins.PluginInterface):
virtual_layer_name = self.config["primary"]
virtual_layer = self.context.memory[virtual_layer_name]
table_mapping = {"nt_symbols": self.config["nt_symbols"]}
native_types = self.context.symbol_space[self.config["nt_symbols"]].natives
kdbg_table_name = KdbgIntermedSymbols.create(self.context,
self.config_path,
"windows",
"kdbg",
table_mapping=table_mapping)
native_types = native_types)
pe_table_name = PEIntermedSymbols.create(self.context,
self.config_path,