From: Konstantin Komarov Date: Mon, 6 Jun 2022 15:57:21 +0000 (+0300) Subject: fs/ntfs3: Add missing error check X-Git-Tag: v6.0-rc2~30^2~28 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=f759942b72a9ad309282b2fedcebcee3c4c58e24;p=linux-block.git fs/ntfs3: Add missing error check We must check return value of log_read_rst Signed-off-by: Konstantin Komarov --- diff --git a/fs/ntfs3/fslog.c b/fs/ntfs3/fslog.c index 614513460b8e..e7c494005122 100644 --- a/fs/ntfs3/fslog.c +++ b/fs/ntfs3/fslog.c @@ -3843,6 +3843,8 @@ int log_replay(struct ntfs_inode *ni, bool *initialized) memset(&rst_info2, 0, sizeof(struct restart_info)); err = log_read_rst(log, l_size, false, &rst_info2); + if (err) + goto out; /* Determine which restart area to use. */ if (!rst_info2.restart || rst_info2.last_lsn <= rst_info.last_lsn)