mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-30 19:59:46 +02:00
Fix 'maxsize variable doing nothing' bug
In one of the earlier commits the varible was erased from being passed to vaddump - that corrects it.
This commit is contained in:
@@ -188,7 +188,7 @@ class VadInfo(interfaces.plugins.PluginInterface):
|
||||
|
||||
file_output = "Disabled"
|
||||
if self.config['dump']:
|
||||
file_handle = self.vad_dump(self.context, proc, vad, self.open)
|
||||
file_handle = self.vad_dump(self.context, proc, vad, self.open, self.config['maxsize'])
|
||||
file_output = "Error outputting file"
|
||||
if file_handle:
|
||||
file_handle.close()
|
||||
|
||||
Reference in New Issue
Block a user