diff options
Diffstat (limited to 'net/bluetooth/cmtp/core.c')
-rw-r--r-- | net/bluetooth/cmtp/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/cmtp/core.c b/net/bluetooth/cmtp/core.c index 3933608a929..66bef1ccee2 100644 --- a/net/bluetooth/cmtp/core.c +++ b/net/bluetooth/cmtp/core.c | |||
@@ -124,7 +124,7 @@ static inline void cmtp_add_msgpart(struct cmtp_session *session, int id, const | |||
124 | } | 124 | } |
125 | 125 | ||
126 | if (skb && (skb->len > 0)) | 126 | if (skb && (skb->len > 0)) |
127 | memcpy(skb_put(nskb, skb->len), skb->data, skb->len); | 127 | skb_copy_from_linear_data(skb, skb_put(nskb, skb->len), skb->len); |
128 | 128 | ||
129 | memcpy(skb_put(nskb, count), buf, count); | 129 | memcpy(skb_put(nskb, count), buf, count); |
130 | 130 | ||
@@ -256,7 +256,7 @@ static void cmtp_process_transmit(struct cmtp_session *session) | |||
256 | hdr[2] = size >> 8; | 256 | hdr[2] = size >> 8; |
257 | } | 257 | } |
258 | 258 | ||
259 | memcpy(skb_put(nskb, size), skb->data, size); | 259 | skb_copy_from_linear_data(skb, skb_put(nskb, size), size); |
260 | skb_pull(skb, size); | 260 | skb_pull(skb, size); |
261 | 261 | ||
262 | if (skb->len > 0) { | 262 | if (skb->len > 0) { |