Blame SOURCES/0013-fs-ntfs3-Remove-unused-variable-cnt-in-ntfs_security.patch

Kmods SIG 63c143
From 8c01308b6d6b2bc8e9163c6a3400856fb782dee6 Mon Sep 17 00:00:00 2001
Kmods SIG 63c143
From: Nathan Chancellor <nathan@kernel.org>
Kmods SIG 63c143
Date: Mon, 16 Aug 2021 12:30:41 -0700
Kmods SIG 63c143
Subject: [Backport 8c01308b6d6b] src: Remove unused variable cnt in
Kmods SIG 63c143
 ntfs_security_init()
Kmods SIG 63c143
Kmods SIG 63c143
Clang warns:
Kmods SIG 63c143
Kmods SIG 63c143
src/fsntfs.c:1874:9: warning: variable 'cnt' set but not used
Kmods SIG 63c143
[-Wunused-but-set-variable]
Kmods SIG 63c143
        size_t cnt, off;
Kmods SIG 63c143
               ^
Kmods SIG 63c143
1 warning generated.
Kmods SIG 63c143
Kmods SIG 63c143
It is indeed unused so remove it.
Kmods SIG 63c143
Kmods SIG 63c143
Fixes: 82cae269cfa9 ("src: Add initialization of super block")
Kmods SIG 63c143
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Kmods SIG 63c143
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Kmods SIG 63c143
Reviewed-by: Kari Argillander <kari.argillander@gmail.com>
Kmods SIG 63c143
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Kmods SIG 63c143
---
Kmods SIG 63c143
 src/fsntfs.c | 5 +----
Kmods SIG 63c143
 1 file changed, 1 insertion(+), 4 deletions(-)
Kmods SIG 63c143
Kmods SIG 63c143
diff --git a/src/fsntfs.c b/src/fsntfs.c
Kmods SIG 63c143
index 92140050fb6c250ce263832d86ff15257cc035e4..c6599c514acf630183cd5eeef7a1630ea0ec6a75 100644
Kmods SIG 63c143
--- a/src/fsntfs.c
Kmods SIG 63c143
+++ b/src/fsntfs.c
Kmods SIG 63c143
@@ -1871,7 +1871,7 @@ int ntfs_security_init(struct ntfs_sb_info *sbi)
Kmods SIG 63c143
 	struct ATTRIB *attr;
Kmods SIG 63c143
 	struct ATTR_LIST_ENTRY *le;
Kmods SIG 63c143
 	u64 sds_size;
Kmods SIG 63c143
-	size_t cnt, off;
Kmods SIG 63c143
+	size_t off;
Kmods SIG 63c143
 	struct NTFS_DE *ne;
Kmods SIG 63c143
 	struct NTFS_DE_SII *sii_e;
Kmods SIG 63c143
 	struct ntfs_fnd *fnd_sii = NULL;
Kmods SIG 63c143
@@ -1946,7 +1946,6 @@ int ntfs_security_init(struct ntfs_sb_info *sbi)
Kmods SIG 63c143
 	sbi->security.next_off =
Kmods SIG 63c143
 		Quad2Align(sds_size - SecurityDescriptorsBlockSize);
Kmods SIG 63c143
 
Kmods SIG 63c143
-	cnt = 0;
Kmods SIG 63c143
 	off = 0;
Kmods SIG 63c143
 	ne = NULL;
Kmods SIG 63c143
 
Kmods SIG 63c143
@@ -1964,8 +1963,6 @@ int ntfs_security_init(struct ntfs_sb_info *sbi)
Kmods SIG 63c143
 		next_id = le32_to_cpu(sii_e->sec_id) + 1;
Kmods SIG 63c143
 		if (next_id >= sbi->security.next_id)
Kmods SIG 63c143
 			sbi->security.next_id = next_id;
Kmods SIG 63c143
-
Kmods SIG 63c143
-		cnt += 1;
Kmods SIG 63c143
 	}
Kmods SIG 63c143
 
Kmods SIG 63c143
 	sbi->security.ni = ni;
Kmods SIG 63c143
-- 
Kmods SIG 63c143
2.31.1
Kmods SIG 63c143