From c8ab4eb814b79afd4a2553703d97a3749a2e1fd8 Mon Sep 17 00:00:00 2001 From: Paul Kermann Date: Mon, 25 Apr 2022 11:25:45 +0300 Subject: [PATCH] if not table name is present table name is an empty string --- volatility3/framework/interfaces/objects.py | 1 + 1 file changed, 1 insertion(+) diff --git a/volatility3/framework/interfaces/objects.py b/volatility3/framework/interfaces/objects.py index c1fb29bb6..8c7167a78 100644 --- a/volatility3/framework/interfaces/objects.py +++ b/volatility3/framework/interfaces/objects.py @@ -121,6 +121,7 @@ class ObjectInterface(metaclass = abc.ABCMeta): vol_info_dict["table_name"] = table_name vol_info_dict["short_name"] = struct_name else: + vol_info_dict["table_name"] = "" vol_info_dict["short_name"] = type_name self._vol = collections.ChainMap({}, vol_info_dict, object_info, kwargs)