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 f060e3b commit d648bd9Copy full SHA for d648bd9
volatility3/cli/volshell/generic.py
@@ -399,7 +399,7 @@ def _get_type_name_with_pointer(
399
a pointer otherwise it returns just the normal type name."""
400
pointer_marker = "*" * depth
401
try:
402
- if isinstance(member_type, objects.Pointer):
+ if member_type.vol.object_class == objects.Pointer:
403
sub_member_type = member_type.vol.subtype
404
# follow at most MAX_DEREFERENCE_COUNT pointers. A guard against, hopefully unlikely, infinite loops
405
if depth < MAX_DEREFERENCE_COUNT:
0 commit comments