diff options
author | Joe Perches <joe@perches.com> | 2011-05-12 09:19:10 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-05-12 17:30:50 -0400 |
commit | afd7614c00e364f8f1327e73ad291b02f6d4d1a6 (patch) | |
tree | 67a49abb1a0efa9544ae3a328f1eafe34436799b | |
parent | 517aa0bcda9b092a4c3fab7bf93f0cebe372ece0 (diff) | |
download | op-kernel-dev-afd7614c00e364f8f1327e73ad291b02f6d4d1a6.zip op-kernel-dev-afd7614c00e364f8f1327e73ad291b02f6d4d1a6.tar.gz |
sctp: sctp_sendmsg: Don't test known non-null sinfo
It's already known non-null above.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/sctp/socket.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/net/sctp/socket.c b/net/sctp/socket.c index d4b8db1..6766913 100644 --- a/net/sctp/socket.c +++ b/net/sctp/socket.c @@ -1791,12 +1791,10 @@ SCTP_STATIC int sctp_sendmsg(struct kiocb *iocb, struct sock *sk, goto out_free; } - if (sinfo) { - /* Check for invalid stream. */ - if (sinfo->sinfo_stream >= asoc->c.sinit_num_ostreams) { - err = -EINVAL; - goto out_free; - } + /* Check for invalid stream. */ + if (sinfo->sinfo_stream >= asoc->c.sinit_num_ostreams) { + err = -EINVAL; + goto out_free; } timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT); |