summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOGAWA Hirofumi <hirofumi@mail.parknet.co.jp>2024-10-04 15:03:49 +0900
committerAndrew Morton <akpm@linux-foundation.org>2024-10-17 00:28:06 -0700
commit963a7f4d3b90ee195b895ca06b95757fcba02d1a (patch)
tree25cfbf5b825f46ef79ac962e3af40b725287b1e8
parent08cfa12adf888db98879dbd735bc741360a34168 (diff)
downloadlinux-963a7f4d3b90ee195b895ca06b95757fcba02d1a.tar.gz
linux-963a7f4d3b90ee195b895ca06b95757fcba02d1a.tar.bz2
linux-963a7f4d3b90ee195b895ca06b95757fcba02d1a.zip
fat: fix uninitialized variable
syszbot produced this with a corrupted fs image. In theory, however an IO error would trigger this also. This affects just an error report, so should not be a serious error. Link: https://lkml.kernel.org/r/87r08wjsnh.fsf@mail.parknet.co.jp Link: https://lkml.kernel.org/r/66ff2c95.050a0220.49194.03e9.GAE@google.com Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> Reported-by: syzbot+ef0d7bc412553291aa86@syzkaller.appspotmail.com Cc: <stable@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r--fs/fat/namei_vfat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fat/namei_vfat.c b/fs/fat/namei_vfat.c
index 6423e1dedf14..15bf32c21ac0 100644
--- a/fs/fat/namei_vfat.c
+++ b/fs/fat/namei_vfat.c
@@ -1037,7 +1037,7 @@ error_inode:
if (corrupt < 0) {
fat_fs_error(new_dir->i_sb,
"%s: Filesystem corrupted (i_pos %lld)",
- __func__, sinfo.i_pos);
+ __func__, new_i_pos);
}
goto out;
}