vsock/vmci: Remove redundant assignment to err
authorYang Li <yang.lee@linux.alibaba.com>
Fri, 30 Apr 2021 09:27:34 +0000 (17:27 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 30 Apr 2021 22:00:59 +0000 (15:00 -0700)
commitf0a5818b472c574a985cfeb6518a5ba395f26b3c
treea524f86128fbf0cdc15fde03717e8c130af8b5ed
parent00207c7d12eeb8758f8df161e3d22603fd0099cf
vsock/vmci: Remove redundant assignment to err

Variable 'err' 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/vmw_vsock/vmci_transport.c:948:2: 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/vmw_vsock/vmci_transport.c