diff options
Diffstat (limited to 'net/ax25/ax25_in.c')
-rw-r--r-- | net/ax25/ax25_in.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ax25/ax25_in.c b/net/ax25/ax25_in.c index 31c59387a6fc..0ddaff0df217 100644 --- a/net/ax25/ax25_in.c +++ b/net/ax25/ax25_in.c | |||
@@ -66,7 +66,9 @@ static int ax25_rx_fragment(ax25_cb *ax25, struct sk_buff *skb) | |||
66 | 66 | ||
67 | /* Copy data from the fragments */ | 67 | /* Copy data from the fragments */ |
68 | while ((skbo = skb_dequeue(&ax25->frag_queue)) != NULL) { | 68 | while ((skbo = skb_dequeue(&ax25->frag_queue)) != NULL) { |
69 | memcpy(skb_put(skbn, skbo->len), skbo->data, skbo->len); | 69 | skb_copy_from_linear_data(skbo, |
70 | skb_put(skbn, skbo->len), | ||
71 | skbo->len); | ||
70 | kfree_skb(skbo); | 72 | kfree_skb(skbo); |
71 | } | 73 | } |
72 | 74 | ||