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:
Michael Ligh
2019-02-24 17:14:28 -06:00
parent 63787acb50
commit d68b94965c
@@ -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