Skip to content

Commit

Permalink
Manually revert 74a834b
Browse files Browse the repository at this point in the history
This should resolve the issue experienced #1590 was trying to resolve.
  • Loading branch information
ikelos committed Feb 1, 2025
1 parent 5a046ea commit df310c0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions volatility3/framework/symbols/linux/extensions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1574,9 +1574,7 @@ def _is_kernel_prior_to_struct_mount(self) -> bool:
'True' if the kernel lacks the 'mount' struct, typically indicating kernel < 3.3.
"""

return (not self._context.symbol_space.has_type("mount")) and self.has_member(
"mnt_parent"
)
return self.has_member("mnt_parent")

def is_equal(self, vfsmount_ptr) -> bool:
"""Helper to make sure it is comparing two pointers to 'vfsmount'.
Expand Down

0 comments on commit df310c0

Please sign in to comment.