Unverified Commit ae5a4e46 authored by Yan Lei's avatar Yan Lei Committed by Konstantin Komarov
Browse files

fs/ntfs3: Fix using uninitialized value n when calling indx_read



This value is checked in indx_read, so it must be initialized
Fixes: 82cae269 ("fs/ntfs3: Add initialization of super block")

Signed-off-by: default avatarYan Lei <chinayanlei2002@163.com>
Signed-off-by: default avatarKonstantin Komarov <almaz.alexandrovich@paragon-software.com>
parent dc8965ab
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1987,7 +1987,7 @@ static int indx_free_children(struct ntfs_index *indx, struct ntfs_inode *ni,
			      const struct NTFS_DE *e, bool trim)
{
	int err;
	struct indx_node *n;
	struct indx_node *n = NULL;
	struct INDEX_HDR *hdr;
	CLST vbn = de_get_vbn(e);
	size_t i;