aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc/auth_gss/svcauth_gss.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2021-06-13 15:06:52 +0100
committerJ. Bruce Fields <bfields@redhat.com>2021-07-06 20:14:42 -0400
commitf6260b98ec1493b214f13bb9d0545779ffe87748 (patch)
tree931e477000f65d19e766eaa17c241dda71e966aa /net/sunrpc/auth_gss/svcauth_gss.c
parentnfs_common: fix doc warning (diff)
downloadlinux-dev-f6260b98ec1493b214f13bb9d0545779ffe87748.tar.xz
linux-dev-f6260b98ec1493b214f13bb9d0545779ffe87748.zip
rpc: remove redundant initialization of variable status
The variable status is being initialized with a value that is never read, the assignment is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net/sunrpc/auth_gss/svcauth_gss.c')
-rw-r--r--net/sunrpc/auth_gss/svcauth_gss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/auth_gss/svcauth_gss.c b/net/sunrpc/auth_gss/svcauth_gss.c
index 6dff64374bfe..a81be45f40d9 100644
--- a/net/sunrpc/auth_gss/svcauth_gss.c
+++ b/net/sunrpc/auth_gss/svcauth_gss.c
@@ -1275,7 +1275,7 @@ static int gss_proxy_save_rsc(struct cache_detail *cd,
long long ctxh;
struct gss_api_mech *gm = NULL;
time64_t expiry;
- int status = -EINVAL;
+ int status;
memset(&rsci, 0, sizeof(rsci));
/* context handle */