mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-25 23:52:23 +02:00
EPROCESS: Fix is_valid check missing cast.
This commit is contained in:
@@ -696,7 +696,7 @@ class EPROCESS(generic.GenericIntelProcess, ExecutiveObject):
|
||||
return False
|
||||
|
||||
# check for all 0s besides the PCID entries
|
||||
if self.Pcb.DirectoryTableBase & ~0xfff == 0:
|
||||
if self.Pcb.DirectoryTableBase.cast("unsigned long long") & ~0xfff == 0:
|
||||
return False
|
||||
|
||||
## TODO: we can also add the thread Flink and Blink tests if necessary
|
||||
|
||||
Reference in New Issue
Block a user