Commit f6260b98 authored by Colin Ian King's avatar Colin Ian King Committed by J. Bruce Fields

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: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent 5823e400
...@@ -1275,7 +1275,7 @@ static int gss_proxy_save_rsc(struct cache_detail *cd, ...@@ -1275,7 +1275,7 @@ static int gss_proxy_save_rsc(struct cache_detail *cd,
long long ctxh; long long ctxh;
struct gss_api_mech *gm = NULL; struct gss_api_mech *gm = NULL;
time64_t expiry; time64_t expiry;
int status = -EINVAL; int status;
memset(&rsci, 0, sizeof(rsci)); memset(&rsci, 0, sizeof(rsci));
/* context handle */ /* context handle */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment