summaryrefslogtreecommitdiff
path: root/sys/netinet/udp_usrreq.c
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2007-07-07 09:46:34 +0000
committerRobert Watson <rwatson@FreeBSD.org>2007-07-07 09:46:34 +0000
commitbd84d204579c9ca0003974e5e291bae1ec409e93 (patch)
tree3d3c6e6d186211f33928b260c91c66d0da9e12b9 /sys/netinet/udp_usrreq.c
parent65ea29a690ac097e986c91e18531f2c106ac3809 (diff)
Notes
Diffstat (limited to 'sys/netinet/udp_usrreq.c')
-rw-r--r--sys/netinet/udp_usrreq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c
index 9391f078e885..3b1e70bfa1aa 100644
--- a/sys/netinet/udp_usrreq.c
+++ b/sys/netinet/udp_usrreq.c
@@ -496,10 +496,10 @@ udp_append(struct inpcb *inp, struct ip *ip, struct mbuf *n, int off,
INP_LOCK_ASSERT(inp);
#ifdef IPSEC
- /* check AH/ESP integrity. */
+ /* Check AH/ESP integrity. */
if (ipsec4_in_reject(n, inp)) {
- ipsec4stat.in_polvio++;
m_freem(n);
+ ipsec4stat.in_polvio++;
return;
}
#endif /* IPSEC */
@@ -538,11 +538,11 @@ udp_append(struct inpcb *inp, struct ip *ip, struct mbuf *n, int off,
so = inp->inp_socket;
SOCKBUF_LOCK(&so->so_rcv);
if (sbappendaddr_locked(&so->so_rcv, append_sa, n, opts) == 0) {
+ SOCKBUF_UNLOCK(&so->so_rcv);
m_freem(n);
if (opts)
m_freem(opts);
udpstat.udps_fullsock++;
- SOCKBUF_UNLOCK(&so->so_rcv);
} else
sorwakeup_locked(so);
}