diff options
Diffstat (limited to 'net/core/skbuff.c')
| -rw-r--r-- | net/core/skbuff.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 17c6bb5927b..331d3efa82f 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -1129,7 +1129,7 @@ int skb_store_bits(const struct sk_buff *skb, int offset, void *from, int len)  	if ((copy = start - offset) > 0) {  		if (copy > len)  			copy = len; -		memcpy(skb->data + offset, from, copy); +		skb_copy_to_linear_data_offset(skb, offset, from, copy);  		if ((len -= copy) == 0)  			return 0;  		offset += copy;  |