mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 10:58:48 +09:00
net: fix warning in af_unix
[ Upstream commit 33c4368ee2 ]
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>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
@@ -224,6 +224,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)
|
||||
|
||||
Reference in New Issue
Block a user