mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-11 04:07:39 +02:00
declare default value :((
This commit is contained in:
@@ -1253,7 +1253,7 @@ class vm_area_struct(objects.StructType):
|
||||
|
||||
def _do_get_name(self, context, task) -> str:
|
||||
if self.vm_file != 0:
|
||||
fname = linux.LinuxUtilities.path_for_file(context, task, self.vm_file)
|
||||
fname = linux.LinuxUtilities.path_for_file(context, task, self.vm_file, files_only=False)
|
||||
elif self.vm_start <= task.mm.start_brk and self.vm_end >= task.mm.brk:
|
||||
fname = "[heap]"
|
||||
elif self.vm_start <= task.mm.start_stack <= self.vm_end:
|
||||
|
||||
Reference in New Issue
Block a user