Commit 04156408 authored by David S. Miller's avatar David S. Miller

drivers/net/ppp_generic.c:ppp_receive_frame Delete unused label err.

parent d865d1d9
...@@ -1401,7 +1401,7 @@ ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch) ...@@ -1401,7 +1401,7 @@ ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
if (skb->len > 0) if (skb->len > 0)
/* note: a 0-length skb is used as an error indication */ /* note: a 0-length skb is used as an error indication */
++ppp->stats.rx_length_errors; ++ppp->stats.rx_length_errors;
err:
kfree_skb(skb); kfree_skb(skb);
ppp_receive_error(ppp); ppp_receive_error(ppp);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment