Skip to content

Commit d29be5c

Browse files
committed
Linux MountInfo: Remove unneeded cast
1 parent a236c0d commit d29be5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

volatility3/framework/plugins/linux/mountinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def get_superblocks(
279279
if not (sb_ptr and sb_ptr.is_readable()):
280280
continue
281281

282-
if int(sb_ptr) in seen_sb_ptr:
282+
if sb_ptr in seen_sb_ptr:
283283
continue
284284
seen_sb_ptr.add(int(sb_ptr))
285285

0 commit comments

Comments
 (0)