Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 82fe0d2b authored by Kees Cook's avatar Kees Cook Committed by David S. Miller
Browse files

af_unix: Use designated initializers



Prepare to mark sensitive kernel structures for randomization by making
sure they're using designated initializers. These were identified during
allyesconfig builds of x86, arm, and arm64, and the initializer fixes
were extracted from grsecurity. In this case, NULL initialize with { }
instead of undesignated NULLs.

Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 540c86f3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -996,7 +996,7 @@ static int unix_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
	unsigned int hash;
	struct unix_address *addr;
	struct hlist_head *list;
	struct path path = { NULL, NULL };
	struct path path = { };

	err = -EINVAL;
	if (sunaddr->sun_family != AF_UNIX)