diff options
author | Colin Ian King <[email protected]> | 2021-03-25 17:35:38 +0000 |
---|---|---|
committer | Steve French <[email protected]> | 2021-05-10 19:15:26 -0500 |
commit | 3161ad3a717e69b26ea3d73467ed8399023b5075 (patch) | |
tree | 94da6afffcd8f39c0288d12570141093212cd312 | |
parent | 849f59e1a18adecf0617afc82efbfc5d126c49f8 (diff) |
cifsd: remove redundant assignment to variable err
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 <[email protected]>
Signed-off-by: Namjae Jeon <[email protected]>
Signed-off-by: Steve French <[email protected]>
-rw-r--r-- | fs/cifsd/vfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifsd/vfs.c b/fs/cifsd/vfs.c index 00f80ca45690..3d7413b8f526 100644 --- a/fs/cifsd/vfs.c +++ b/fs/cifsd/vfs.c @@ -587,7 +587,7 @@ int ksmbd_vfs_remove_file(struct ksmbd_work *work, char *name) struct path parent; struct dentry *dir, *dentry; char *last; - int err = -ENOENT; + int err; last = extract_last_component(name); if (!last) |