Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 322448
b: refs/heads/master
c: 3f509c6
h: refs/heads/master
v: v3
  • Loading branch information
Pablo Neira Ayuso committed Aug 30, 2012
1 parent e0bd845 commit 451a461
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6fc09f10f12477bdaa54e94f9cb428bef6d81315
refs/heads/master: 3f509c689a07a4aa989b426893d8491a7ffcc410
5 changes: 4 additions & 1 deletion trunk/net/ipv4/netfilter/nf_nat_sip.c
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,10 @@ static unsigned int ip_nat_sdp_media(struct sk_buff *skb, unsigned int dataoff,
ret = nf_ct_expect_related(rtcp_exp);
if (ret == 0)
break;
else if (ret != -EBUSY) {
else if (ret == -EBUSY) {
nf_ct_unexpect_related(rtp_exp);
continue;
} else if (ret < 0) {
nf_ct_unexpect_related(rtp_exp);
port = 0;
break;
Expand Down

0 comments on commit 451a461

Please sign in to comment.