remove redundant condition in memccpy
authorAlexander Monakov <amonakov@ispras.ru>
Mon, 9 Mar 2020 18:32:16 +0000 (21:32 +0300)
committerRich Felker <dalias@aerifal.cx>
Fri, 20 Mar 2020 19:45:08 +0000 (15:45 -0400)
commit526df238d0d05fe4e8446720d9d0374646f82f82
tree6d718b69eab7383b866cad83659e6c132dcb1ed2
parent72658c658b234bf24ebbc2be1863f4c6b2f2434d
remove redundant condition in memccpy

Commit d9bdfd164 ("fix memccpy to not access buffer past given size")
correctly added a check for 'n' nonzero, but made the pre-existing test
'*s==c' redundant: n!=0 implies *s==c. Remove the unnecessary check.

Reported by Alexey Izbyshev.
src/string/memccpy.c