dect
/
linux-2.6
Archived
13
0
Fork 0

net/ipv6/udp.c: fix typo in flush_stack()

skb1 should be passed as parameter to sk_rcvqueues_full() here.

Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jiri Pirko 2010-12-09 03:40:30 +00:00 committed by David S. Miller
parent 457de4383e
commit c07224005d
1 changed files with 1 additions and 1 deletions

View File

@ -602,7 +602,7 @@ static void flush_stack(struct sock **stack, unsigned int count,
sk = stack[i];
if (skb1) {
if (sk_rcvqueues_full(sk, skb)) {
if (sk_rcvqueues_full(sk, skb1)) {
kfree_skb(skb1);
goto drop;
}