From d80fbf1a69eab71e041de925bd47b4072b3584ed Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Mon, 10 Jul 2017 00:04:29 +0100 Subject: [PATCH] Fix validation typo preventing the newer symbols from properly working. --- volatility/framework/interfaces/symbols.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/interfaces/symbols.py b/volatility/framework/interfaces/symbols.py index 8e3211603..85fa18724 100644 --- a/volatility/framework/interfaces/symbols.py +++ b/volatility/framework/interfaces/symbols.py @@ -26,7 +26,7 @@ class Symbol(validity.ValidityRoutines): self._constant_data = None if constant_data is not None: - self._constant_data = self._check_type(bytes, constant_data) + self._constant_data = self._check_type(constant_data, bytes) @property def name(self):