fs/ntfs3: Remove a useless test in 'indx_find()'

'fnd' has been dereferenced several time before, so testing it here is
pointless.
Moreover, all callers of 'indx_find()' already have some error handling
code that makes sure that no NULL 'fnd' is passed.

So, remove the useless test.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Kari Argillander <kari.argillander@gmail.com>
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
This commit is contained in:
Christophe JAILLET 2021-09-18 21:56:19 +02:00 committed by Konstantin Komarov
parent 6354467245
commit d2846bf33c
No known key found for this signature in database
GPG Key ID: A9B0331F832407B6
1 changed files with 1 additions and 3 deletions

View File

@ -1072,9 +1072,7 @@ int indx_find(struct ntfs_index *indx, struct ntfs_inode *ni,
if (!e)
return -EINVAL;
if (fnd)
fnd->root_de = e;
fnd->root_de = e;
err = 0;
for (;;) {