]> granicus.if.org Git - libexpat/commit
Do not cast arguments of memcpy(3).
authorAlexander Bluhm <alexander.bluhm@gmx.net>
Mon, 21 Aug 2017 17:33:08 +0000 (19:33 +0200)
committerAlexander Bluhm <alexander.bluhm@gmx.net>
Mon, 21 Aug 2017 17:48:20 +0000 (19:48 +0200)
commit793c0669534b2be58197abaf7f244d87b5faac14
tree66cd0903a4443d926214596bc7a739c5054a6df4
parent17092fc677afde3742fb599d4dcd91784181183b
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.
expat/lib/xmltok.c