You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
fix breakage in o2net_send_tcp_msg()
uninitialized msghdr. Broken in "ocfs2: don't open-code kernel_recvmsg()" by me ;-/ Cc: stable@vger.kernel.org # 3.15+ Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -925,7 +925,7 @@ static int o2net_send_tcp_msg(struct socket *sock, struct kvec *vec,
|
||||
size_t veclen, size_t total)
|
||||
{
|
||||
int ret;
|
||||
struct msghdr msg;
|
||||
struct msghdr msg = {.msg_flags = 0,};
|
||||
|
||||
if (sock == NULL) {
|
||||
ret = -EINVAL;
|
||||
|
||||
Reference in New Issue
Block a user