inetcomm: Avoid overlapping memcpy (Coverity).

This commit is contained in:
Marcus Meissner 2015-04-19 11:50:42 +02:00 committed by Alexandre Julliard
parent 45e00e5516
commit a57b06c5ac

View file

@ -1613,13 +1613,13 @@ static HRESULT create_body_offset_list(IStream *stm, const char *boundary, struc
if(overlap == buf) /* 1st iteration */ 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; overlap = buf + overlap_no;
start += read - overlap_no; start += read - overlap_no;
} }
else else
{ {
memcpy(buf, buf + PARSER_BUF_SIZE, overlap_no); memmove(buf, buf + PARSER_BUF_SIZE, overlap_no);
start += read; start += read;
} }
} while(1); } while(1);