diff options
| author | maxv <maxv@NetBSD.org> | 2019-09-08 18:46:32 +0000 |
|---|---|---|
| committer | maxv <maxv@NetBSD.org> | 2019-09-08 18:46:32 +0000 |
| commit | 28cac2016e123a092af009e58858faca2ffeb76b (patch) | |
| tree | 8360e18d259d7d4915209c9ebf1a8540d127d189 /sys/compat/linux | |
| parent | 3d5eaa31dc71ff8f474b57276e07cf21fe920ea1 (diff) | |
Hum, remove incorrect assignment. Userland could have passed a smaller
namelen, and the uninitialized bytes from sb_data were being used later in
the network stack.
Diffstat (limited to 'sys/compat/linux')
| -rw-r--r-- | sys/compat/linux/common/linux_socket.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/compat/linux/common/linux_socket.c b/sys/compat/linux/common/linux_socket.c index ea481c9a6f6..38787a97f9f 100644 --- a/sys/compat/linux/common/linux_socket.c +++ b/sys/compat/linux/common/linux_socket.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux_socket.c,v 1.148 2019/08/24 14:18:43 maxv Exp $ */ +/* $NetBSD: linux_socket.c,v 1.149 2019/09/08 18:46:32 maxv Exp $ */ /*- * Copyright (c) 1995, 1998, 2008 The NetBSD Foundation, Inc. @@ -35,7 +35,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: linux_socket.c,v 1.148 2019/08/24 14:18:43 maxv Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux_socket.c,v 1.149 2019/09/08 18:46:32 maxv Exp $"); #if defined(_KERNEL_OPT) #include "opt_inet.h" @@ -1609,9 +1609,6 @@ linux_get_sa(struct lwp *l, int s, struct sockaddr_big *sb, sin6->sin6_scope_id = 0; } - if (bdom == AF_INET) - namelen = sizeof(struct sockaddr_in); - sb->sb_family = bdom; sb->sb_len = namelen; ktrkuser("mbsoname", sb, namelen); |
