diff options
Diffstat (limited to 'net/llc/llc_conn.c')
-rw-r--r-- | net/llc/llc_conn.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/llc/llc_conn.c b/net/llc/llc_conn.c index 5c6d89c6d51d..3477624a4906 100644 --- a/net/llc/llc_conn.c +++ b/net/llc/llc_conn.c | |||
@@ -332,8 +332,7 @@ int llc_conn_remove_acked_pdus(struct sock *sk, u8 nr, u16 *how_many_unacked) | |||
332 | 332 | ||
333 | for (i = 0; i < pdu_pos && i < q_len; i++) { | 333 | for (i = 0; i < pdu_pos && i < q_len; i++) { |
334 | skb = skb_dequeue(&llc->pdu_unack_q); | 334 | skb = skb_dequeue(&llc->pdu_unack_q); |
335 | if (skb) | 335 | kfree_skb(skb); |
336 | kfree_skb(skb); | ||
337 | nbr_acked++; | 336 | nbr_acked++; |
338 | } | 337 | } |
339 | out: | 338 | out: |