inetcomm: Avoid overlapping memcpy (Coverity).
This commit is contained in:
parent
45e00e5516
commit
a57b06c5ac
|
@ -1613,13 +1613,13 @@ static HRESULT create_body_offset_list(IStream *stm, const char *boundary, struc
|
|||
|
||||
if(overlap == buf) /* 1st iteration */
|
||||
{
|
||||
memcpy(buf, buf + PARSER_BUF_SIZE - overlap_no, overlap_no);
|
||||
memmove(buf, buf + PARSER_BUF_SIZE - overlap_no, overlap_no);
|
||||
overlap = buf + overlap_no;
|
||||
start += read - overlap_no;
|
||||
}
|
||||
else
|
||||
{
|
||||
memcpy(buf, buf + PARSER_BUF_SIZE, overlap_no);
|
||||
memmove(buf, buf + PARSER_BUF_SIZE, overlap_no);
|
||||
start += read;
|
||||
}
|
||||
} while(1);
|
||||
|
|
Loading…
Reference in New Issue