Commit 01a6ae13 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '8ef98855'

* commit '8ef98855':
  sctp: Always initialize outmsg struct
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 402b18af 8ef98855
...@@ -116,7 +116,7 @@ static int ff_sctp_recvmsg(int s, void *msg, size_t len, struct sockaddr *from, ...@@ -116,7 +116,7 @@ static int ff_sctp_recvmsg(int s, void *msg, size_t len, struct sockaddr *from,
static int ff_sctp_send(int s, const void *msg, size_t len, static int ff_sctp_send(int s, const void *msg, size_t len,
const struct sctp_sndrcvinfo *sinfo, int flags) const struct sctp_sndrcvinfo *sinfo, int flags)
{ {
struct msghdr outmsg; struct msghdr outmsg = { 0 };
struct iovec iov; struct iovec iov;
outmsg.msg_name = NULL; outmsg.msg_name = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment