mirror of
https://github.com/curl/curl.git
synced 2026-05-17 09:56:21 +03:00
Curl_pp_readresp: use memmove not memcpy, possibly overlapping areas
Fixes commit 1deac31eba
This commit is contained in:
parent
08e57f916c
commit
2618e4caae
1 changed files with 1 additions and 1 deletions
|
|
@ -377,7 +377,7 @@ CURLcode Curl_pp_readresp(curl_socket_t sockfd,
|
|||
/* This is the end of the last line, copy the last line to the
|
||||
start of the buffer and zero terminate, for old times sake */
|
||||
size_t n = ptr - pp->linestart_resp;
|
||||
memcpy(buf, pp->linestart_resp, n);
|
||||
memmove(buf, pp->linestart_resp, n);
|
||||
buf[n]=0; /* zero terminate */
|
||||
keepon=FALSE;
|
||||
pp->linestart_resp = ptr+1; /* advance pointer */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue