audit: remove unnecessary 'ret' initialization
authorAustin Kim <austin.kim@lge.com>
Fri, 11 Jun 2021 02:28:35 +0000 (03:28 +0100)
committerPaul Moore <paul@paul-moore.com>
Fri, 11 Jun 2021 17:21:28 +0000 (13:21 -0400)
The variable 'ret' is set to 0 when declared.
The 'ret' is unused until it is set to 0 again.

So it had better remove unnecessary initialization.

Signed-off-by: Austin Kim <austin.kim@lge.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
security/lsm_audit.c

index 82ce149..5a5016e 100644 (file)
@@ -119,7 +119,6 @@ int ipv6_skb_to_auditdata(struct sk_buff *skb,
                return -EINVAL;
        ad->u.net->v6info.saddr = ip6->saddr;
        ad->u.net->v6info.daddr = ip6->daddr;
-       ret = 0;
        /* IPv6 can have several extension header before the Transport header
         * skip them */
        offset = skb_network_offset(skb);