OSDN Git Service

netfilter: xt_CT: Remove redundant assignment to ret
authorYang Li <yang.lee@linux.alibaba.com>
Fri, 30 Apr 2021 09:25:10 +0000 (17:25 +0800)
committerPablo Neira Ayuso <pablo@netfilter.org>
Fri, 28 May 2021 23:04:53 +0000 (01:04 +0200)
commit02d85142670b6676abcfd95023c8d28288dc5ad9
treef00050f38d94056b9512500b75e76cf44106fa34
parent07df3fc90a03919b5f1bc3b2fad0046a0aa0e2cb
netfilter: xt_CT: Remove redundant assignment to ret

Variable 'ret' is set to zero but this value is never read as it is
overwritten with a new value later on, hence it is a redundant
assignment and can be removed

Clean up the following clang-analyzer warning:

net/netfilter/xt_CT.c:175:2: warning: Value stored to 'ret' is never read [clang-analyzer-deadcode.DeadStores]

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/xt_CT.c