mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
fs/ntfs3: Fix using uninitialized value n when calling indx_read
This value is checked in indx_read, so it must be initialized
Fixes: 82cae269cf
("fs/ntfs3: Add initialization of super block")
Signed-off-by: Yan Lei <chinayanlei2002@163.com>
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
This commit is contained in:
parent
dc8965ab5e
commit
ae5a4e4691
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user