mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-17 20:35:40 +02:00
catch TypeError in _FILE_OBJECT.file_name_with_device(). this avoids an exception trying to combine a str with renderers.UnreadableValue()
This commit is contained in:
@@ -452,7 +452,7 @@ class _FILE_OBJECT(objects.Struct, ExecutiveObject):
|
||||
|
||||
try:
|
||||
name += self.FileName.String
|
||||
except exceptions.PagedInvalidAddressException:
|
||||
except (TypeError, exceptions.PagedInvalidAddressException):
|
||||
pass
|
||||
|
||||
return name
|
||||
|
||||
Reference in New Issue
Block a user