From: Yang Li Date: Fri, 30 Apr 2021 09:27:34 +0000 (+0800) Subject: vsock/vmci: Remove redundant assignment to err X-Git-Tag: accepted/tizen/unified/20230118.172025~7255^2~30 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f0a5818b472c574a985cfeb6518a5ba395f26b3c;p=platform%2Fkernel%2Flinux-rpi.git 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 Signed-off-by: Yang Li Signed-off-by: David S. Miller --- diff --git a/net/vmw_vsock/vmci_transport.c b/net/vmw_vsock/vmci_transport.c index 1c9ecb1..c99bc4c 100644 --- a/net/vmw_vsock/vmci_transport.c +++ b/net/vmw_vsock/vmci_transport.c @@ -944,8 +944,6 @@ static int vmci_transport_recv_listen(struct sock *sk, bool old_request = false; bool old_pkt_proto = false; - err = 0; - /* Because we are in the listen state, we could be receiving a packet * for ourself or any previous connection requests that we received. * If it's the latter, we try to find a socket in our list of pending