From: Sankha Narayan Guria Date: Mon, 16 Dec 2013 06:25:43 +0000 (+0530) Subject: staging: usbip: Remove double initialization of msg_namelen variable X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=b481c2cb3534c85dca625973b33eba15f9af3e4c;p=deliverable%2Flinux.git staging: usbip: Remove double initialization of msg_namelen variable This removes the double initialization of the msg_namelen variable. Signed-off-by: Sankha Narayan Guria Signed-off-by: Jiri Kosina --- diff --git a/drivers/staging/usbip/usbip_common.c b/drivers/staging/usbip/usbip_common.c index e3fc749c1e7e..e2bffece81d7 100644 --- a/drivers/staging/usbip/usbip_common.c +++ b/drivers/staging/usbip/usbip_common.c @@ -366,7 +366,6 @@ int usbip_recv(struct socket *sock, void *buf, int size) msg.msg_namelen = 0; msg.msg_control = NULL; msg.msg_controllen = 0; - msg.msg_namelen = 0; msg.msg_flags = MSG_NOSIGNAL; result = kernel_recvmsg(sock, &msg, &iov, 1, size, MSG_WAITALL);