diff options
author | [email protected] <[email protected]> | 2015-12-15 10:46:17 -0800 |
---|---|---|
committer | David S. Miller <[email protected]> | 2015-12-15 15:46:48 -0500 |
commit | 130ed5d105dde141e7fe60d5440aa53e0a84f13b (patch) | |
tree | 0f79eb596cd5c9f333883620f2fce3e73a67a1ee | |
parent | 5233252fce714053f0151680933571a2da9cbfb4 (diff) |
net: fix uninitialized variable issue
msg_iocb needs to be initialized on the recv/recvfrom path.
Otherwise afalg will wrongly interpret it as an async call.
Cc: [email protected]
Reported-by: Harald Freudenberger <[email protected]>
Signed-off-by: Tadeusz Struk <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | net/socket.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/socket.c b/net/socket.c index 456fadb3d819..29822d6dd91e 100644 --- a/net/socket.c +++ b/net/socket.c @@ -1695,6 +1695,7 @@ SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size, msg.msg_name = addr ? (struct sockaddr *)&address : NULL; /* We assume all kernel code knows the size of sockaddr_storage */ msg.msg_namelen = 0; + msg.msg_iocb = NULL; if (sock->file->f_flags & O_NONBLOCK) flags |= MSG_DONTWAIT; err = sock_recvmsg(sock, &msg, iov_iter_count(&msg.msg_iter), flags); |