SUNRPC: remove redundant pointer plainhdr
authorColin Ian King <colin.i.king@gmail.com>
Sun, 30 Jan 2022 22:44:10 +0000 (22:44 +0000)
committerTrond Myklebust <trond.myklebust@hammerspace.com>
Fri, 25 Feb 2022 23:50:12 +0000 (18:50 -0500)
[You don't often get email from colin.i.king@gmail.com. Learn why this is important at http://aka.ms/LearnAboutSenderIdentification.]

Pointer plainhdr is being assigned a value that is never read, the
pointer is redundant and can be removed.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
net/sunrpc/auth_gss/gss_krb5_wrap.c

index e95c009..5f96e75 100644 (file)
@@ -409,7 +409,7 @@ static u32
 gss_wrap_kerberos_v2(struct krb5_ctx *kctx, u32 offset,
                     struct xdr_buf *buf, struct page **pages)
 {
-       u8              *ptr, *plainhdr;
+       u8              *ptr;
        time64_t        now;
        u8              flags = 0x00;
        __be16          *be16ptr;
@@ -426,7 +426,7 @@ gss_wrap_kerberos_v2(struct krb5_ctx *kctx, u32 offset,
                return GSS_S_FAILURE;
 
        /* construct gss token header */
-       ptr = plainhdr = buf->head[0].iov_base + offset;
+       ptr = buf->head[0].iov_base + offset;
        *ptr++ = (unsigned char) ((KG2_TOK_WRAP>>8) & 0xff);
        *ptr++ = (unsigned char) (KG2_TOK_WRAP & 0xff);