Do not cast arguments of memcpy(3).

With an explicit cast, the C compiler does not check whether the
function's arguments are compatible and will just convert anything.
So removing the cast makes the code safer as the compiler will
complain in more cases.  The implicit cast does the correct thing.
This commit is contained in:
Alexander Bluhm 2017-08-21 19:33:08 +02:00
parent 17092fc677
commit 793c066953
No known key found for this signature in database
GPG key ID: C5F483ADDEE86380

View file

@ -412,7 +412,7 @@ utf8_toUtf8(const ENCODING *UNUSED_P(enc),
}
const ptrdiff_t bytesToCopy = fromLim - *fromP;
memcpy((void *)*toP, (const void *)*fromP, (size_t)bytesToCopy);
memcpy(*toP, *fromP, bytesToCopy);
*fromP += bytesToCopy;
*toP += bytesToCopy;