[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20201204175600.1147876-1-colin.king@canonical.com>
Date: Fri, 4 Dec 2020 17:56:00 +0000
From: Colin King <colin.king@...onical.com>
To: Alexander Viro <viro@...iv.linux.org.uk>,
linux-fsdevel@...r.kernel.org
Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] file: remove redundant assignment to variable err
From: Colin Ian King <colin.king@...onical.com>
The variable err is being initialized with a value that is never read
and it is being updated later with a new value. The initialization is
redundant and can be removed.
Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@...onical.com>
---
fs/file.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/file.c b/fs/file.c
index 412033d8cfdf..5d1d1b2a5c97 100644
--- a/fs/file.c
+++ b/fs/file.c
@@ -1086,7 +1086,7 @@ int __receive_fd(int fd, struct file *file, int __user *ufd, unsigned int o_flag
static int ksys_dup3(unsigned int oldfd, unsigned int newfd, int flags)
{
- int err = -EBADF;
+ int err;
struct file *file;
struct files_struct *files = current->files;
--
2.29.2
Powered by blists - more mailing lists