Skip to content

Commit 2efb7f5

Browse files
committed
declare default value :((
1 parent e29a01e commit 2efb7f5

File tree

1 file changed

+1
-1
lines changed
  • volatility3/framework/symbols/linux/extensions

1 file changed

+1
-1
lines changed

volatility3/framework/symbols/linux/extensions/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@ def get_page_offset(self) -> int:
12531253

12541254
def _do_get_name(self, context, task) -> str:
12551255
if self.vm_file != 0:
1256-
fname = linux.LinuxUtilities.path_for_file(context, task, self.vm_file)
1256+
fname = linux.LinuxUtilities.path_for_file(context, task, self.vm_file, files_only=False)
12571257
elif self.vm_start <= task.mm.start_brk and self.vm_end >= task.mm.brk:
12581258
fname = "[heap]"
12591259
elif self.vm_start <= task.mm.start_stack <= self.vm_end:

0 commit comments

Comments
 (0)