]> git.baikalelectronics.ru Git - kernel.git/commit
net: Remove redundant assignment to err
authorYang Li <yang.lee@linux.alibaba.com>
Thu, 29 Apr 2021 01:32:36 +0000 (09:32 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 29 Apr 2021 22:34:15 +0000 (15:34 -0700)
commit77c7d4dd2eee5bfb98cdc6e810c1407c8d406bf2
treeb9529ccdc070d30e4eb5611dc278e356257b27df
parent23f369d82a28742059c4c1465ab374fcb09e0a35
net: Remove redundant assignment to err

Variable 'err' is set to -ENOMEM but this value is never read as it is
overwritten with a new value later on, hence the 'If statements' and
assignments are redundantand and can be removed.

Cleans up the following clang-analyzer warning:

net/ipv6/seg6.c:126:4: warning: Value stored to 'err' 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: David S. Miller <davem@davemloft.net>
net/ipv6/seg6.c