Skip to content

Commit 106b3b3

Browse files
committed
Linux: PageCache: Fix inode offset when logging an error
1 parent 1e871af commit 106b3b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

volatility3/framework/plugins/linux/pagecache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ def write_inode_content_to_file(
454454
if current_fp + len(page_bytes) > inode_size:
455455
vollog.error(
456456
"Page out of file bounds: inode 0x%x, inode size %d, page index %d",
457-
inode.vol.object,
457+
inode.vol.offset,
458458
inode_size,
459459
page_idx,
460460
)

0 commit comments

Comments
 (0)