mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
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:
parent
17092fc677
commit
793c066953
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue