From 04810f000afdbdd37825ca7f563f036119422cb7 Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Tue, 24 Aug 2021 10:49:32 +0300 Subject: [Backport 04810f000afd] src: Fix error code in indx_add_allocate() Return -EINVAL if ni_find_attr() fails. Don't return success. Fixes: 82cae269cfa9 ("src: Add initialization of super block") Signed-off-by: Dan Carpenter Reviewed-by: Kari Argillander Signed-off-by: Konstantin Komarov --- src/index.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.c b/src/index.c index 334a3cef714b3e5c5b6fc31b3fd33d39bb5caa25..5fb41c9c89100aee4d6d0e8f7cf65556aec11250 100644 --- a/src/index.c +++ b/src/index.c @@ -1500,6 +1500,7 @@ static int indx_add_allocate(struct ntfs_index *indx, struct ntfs_inode *ni, alloc = ni_find_attr(ni, NULL, NULL, ATTR_ALLOC, in->name, in->name_len, NULL, &mi); if (!alloc) { + err = -EINVAL; if (bmp) goto out2; goto out1; -- 2.31.1