mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-22 14:32:21 +02:00
Change unsigned long long by pointer
This commit is contained in:
@@ -694,7 +694,7 @@ class EPROCESS(generic.GenericIntelProcess, ExecutiveObject):
|
||||
|
||||
# check for all 0s besides the PCID entries
|
||||
if isinstance(self.Pcb.DirectoryTableBase, objects.Array):
|
||||
dtb = self.Pcb.DirectoryTableBase.cast("unsigned long long")
|
||||
dtb = self.Pcb.DirectoryTableBase.cast("pointer")
|
||||
else:
|
||||
dtb = self.Pcb.DirectoryTableBase
|
||||
|
||||
|
||||
Reference in New Issue
Block a user