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 d648bd9 commit 9d1a682Copy full SHA for 9d1a682
volatility3/cli/volshell/generic.py
@@ -404,8 +404,6 @@ def _get_type_name_with_pointer(
404
# follow at most MAX_DEREFERENCE_COUNT pointers. A guard against, hopefully unlikely, infinite loops
405
if depth < MAX_DEREFERENCE_COUNT:
406
return self._get_type_name_with_pointer(sub_member_type, depth + 1)
407
- else:
408
- return member_type_name
409
except AttributeError:
410
pass # not all objects get a `object_class`, and those that don't are not pointers.
411
finally:
0 commit comments