mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-06 17:57:38 +02:00
#1446 - pid is objects.Pointer, not int
This commit is contained in:
@@ -20,10 +20,10 @@ class PsTree(interfaces.plugins.PluginInterface):
|
||||
|
||||
def __init__(self, *args, **kwargs) -> None:
|
||||
super().__init__(*args, **kwargs)
|
||||
self._processes: Dict[int, Tuple[interfaces.objects.ObjectInterface, int]] = {}
|
||||
self._levels: Dict[int, int] = {}
|
||||
self._children: Dict[int, Set[int]] = {}
|
||||
self._ancestors: Set[int] = set([])
|
||||
self._processes: Dict[objects.Pointer, Tuple[interfaces.objects.ObjectInterface, int]] = {}
|
||||
self._levels: Dict[objects.Pointer, int] = {}
|
||||
self._children: Dict[objects.Pointer, Set[int]] = {}
|
||||
self._ancestors: Set[objects.Pointer] = set([])
|
||||
|
||||
@classmethod
|
||||
def get_requirements(cls):
|
||||
|
||||
Reference in New Issue
Block a user