All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fs/ntfs3: Add missing error check
@ 2022-06-06 16:06 Konstantin Komarov
  0 siblings, 0 replies; only message in thread
From: Konstantin Komarov @ 2022-06-06 16:06 UTC (permalink / raw)
  To: ntfs3; +Cc: linux-kernel, linux-fsdevel

We must check return value of log_read_rst

Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
---
  fs/ntfs3/fslog.c | 2 ++
  1 file changed, 2 insertions(+)

diff --git a/fs/ntfs3/fslog.c b/fs/ntfs3/fslog.c
index 915f42cf07bc..abc8aeffc364 100644
--- a/fs/ntfs3/fslog.c
+++ b/fs/ntfs3/fslog.c
@@ -3843,6 +3843,8 @@ int log_replay(struct ntfs_inode *ni, bool *initialized)
  		goto check_restart_area;
  
  	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)
-- 
2.36.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-06-06 16:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-06 16:06 [PATCH] fs/ntfs3: Add missing error check Konstantin Komarov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.