All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] net: fix warning in af_unix
@ 2018-10-16  5:57 Kyeongdon Kim
  2018-10-18  4:57 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Kyeongdon Kim @ 2018-10-16  5:57 UTC (permalink / raw)
  To: davem, ktkhai, viro, garsilva, jbaron, dvlasenk, xiyou.wangcong
  Cc: netdev, linux-kernel, kyeongdon.kim

This fixes the "'hash' may be used uninitialized in this function"

net/unix/af_unix.c:1041:20: warning: 'hash' may be used uninitialized in this function [-Wmaybe-uninitialized]
  addr->hash = hash ^ sk->sk_type;

Signed-off-by: Kyeongdon Kim <kyeongdon.kim@lge.com>
---
 net/unix/af_unix.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c
index d1edfa3..98d34fb 100644
--- a/net/unix/af_unix.c
+++ b/net/unix/af_unix.c
@@ -225,6 +225,8 @@ static inline void unix_release_addr(struct unix_address *addr)
 
 static int unix_mkname(struct sockaddr_un *sunaddr, int len, unsigned int *hashp)
 {
+	*hashp = 0;
+
 	if (len <= sizeof(short) || len > sizeof(*sunaddr))
 		return -EINVAL;
 	if (!sunaddr || sunaddr->sun_family != AF_UNIX)
-- 
2.6.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] net: fix warning in af_unix
  2018-10-16  5:57 [PATCH v2] net: fix warning in af_unix Kyeongdon Kim
@ 2018-10-18  4:57 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2018-10-18  4:57 UTC (permalink / raw)
  To: kyeongdon.kim
  Cc: ktkhai, viro, garsilva, jbaron, dvlasenk, xiyou.wangcong, netdev,
	linux-kernel

From: Kyeongdon Kim <kyeongdon.kim@lge.com>
Date: Tue, 16 Oct 2018 14:57:26 +0900

> This fixes the "'hash' may be used uninitialized in this function"
> 
> net/unix/af_unix.c:1041:20: warning: 'hash' may be used uninitialized in this function [-Wmaybe-uninitialized]
>   addr->hash = hash ^ sk->sk_type;
> 
> Signed-off-by: Kyeongdon Kim <kyeongdon.kim@lge.com>

Applied to net-next.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-10-18  4:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-16  5:57 [PATCH v2] net: fix warning in af_unix Kyeongdon Kim
2018-10-18  4:57 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.