Blame SOURCES/0043-fs-ntfs3-Remove-redundant-initialization-of-variable.patch
|
Kmods SIG |
d83023 |
From 0327c6d01a97a3242cf10717819994aa6e095a1d Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
d83023 |
From: Colin Ian King <colin.king@canonical.com>
|
|
Kmods SIG |
d83023 |
Date: Fri, 3 Sep 2021 14:24:58 +0100
|
|
Kmods SIG |
d83023 |
Subject: [Backport 0327c6d01a97] src: Remove redundant initialization of
|
|
Kmods SIG |
d83023 |
variable err
|
|
Kmods SIG |
d83023 |
|
|
Kmods SIG |
d83023 |
The variable err is being initialized with a value that is never read, it
|
|
Kmods SIG |
d83023 |
is being updated later on. The assignment is redundant and can be removed.
|
|
Kmods SIG |
d83023 |
|
|
Kmods SIG |
d83023 |
Addresses-Coverity: ("Unused value")
|
|
Kmods SIG |
d83023 |
Signed-off-by: Colin Ian King <colin.king@canonical.com>
|
|
Kmods SIG |
d83023 |
Reviewed-by: Kari Argillander <kari.argillander@gmail.com>
|
|
Kmods SIG |
d83023 |
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
d83023 |
---
|
|
Kmods SIG |
d83023 |
src/index.c | 2 +-
|
|
Kmods SIG |
d83023 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
Kmods SIG |
d83023 |
|
|
Kmods SIG |
d83023 |
diff --git a/src/index.c b/src/index.c
|
|
Kmods SIG |
d83023 |
index 0daca9adc54c79084743efc2487b49a0ac0d3227..b1175542d854c44550858ce7620df68b99ee7b86 100644
|
|
Kmods SIG |
d83023 |
--- a/src/index.c
|
|
Kmods SIG |
d83023 |
+++ b/src/index.c
|
|
Kmods SIG |
d83023 |
@@ -1401,7 +1401,7 @@ int indx_find_raw(struct ntfs_index *indx, struct ntfs_inode *ni,
|
|
Kmods SIG |
d83023 |
static int indx_create_allocate(struct ntfs_index *indx, struct ntfs_inode *ni,
|
|
Kmods SIG |
d83023 |
CLST *vbn)
|
|
Kmods SIG |
d83023 |
{
|
|
Kmods SIG |
d83023 |
- int err = -ENOMEM;
|
|
Kmods SIG |
d83023 |
+ int err;
|
|
Kmods SIG |
d83023 |
struct ntfs_sb_info *sbi = ni->mi.sbi;
|
|
Kmods SIG |
d83023 |
struct ATTRIB *bitmap;
|
|
Kmods SIG |
d83023 |
struct ATTRIB *alloc;
|
|
Kmods SIG |
d83023 |
--
|
|
Kmods SIG |
d83023 |
2.31.1
|
|
Kmods SIG |
d83023 |
|