mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-08 18:57:38 +02:00
refs #200 raise ValueError if an object doesn't have a name
This commit is contained in:
@@ -52,7 +52,7 @@ class MutantScan(interfaces.plugins.PluginInterface):
|
||||
|
||||
try:
|
||||
name = mutant.get_name()
|
||||
except exceptions.InvalidAddressException:
|
||||
except (ValueError, exceptions.InvalidAddressException):
|
||||
name = renderers.NotApplicableValue()
|
||||
|
||||
yield (0, (format_hints.Hex(mutant.vol.offset), name))
|
||||
|
||||
Reference in New Issue
Block a user