We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15a51cf commit f00c4c3Copy full SHA for f00c4c3
volatility3/framework/contexts/__init__.py
@@ -245,7 +245,7 @@ def object(
245
"""
246
if constants.BANG not in object_type:
247
object_type = self.symbol_table_name + constants.BANG + object_type
248
- else:
+ elif not object_type.startswith(self.symbol_table_name + constants.BANG):
249
raise ValueError(
250
"Cannot reference another module when constructing an object"
251
)
0 commit comments