From 526df238d0d05fe4e8446720d9d0374646f82f82 Mon Sep 17 00:00:00 2001 From: Alexander Monakov Date: Mon, 9 Mar 2020 21:32:16 +0300 Subject: 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/string/memccpy.c') diff --git a/src/string/memccpy.c b/src/string/memccpy.c index 00c18e2b..3b0a3700 100644 --- a/src/string/memccpy.c +++ b/src/string/memccpy.c @@ -29,6 +29,6 @@ void *memccpy(void *restrict dest, const void *restrict src, int c, size_t n) #endif for (; n && (*d=*s)!=c; n--, s++, d++); tail: - if (n && *s==c) return d+1; + if (n) return d+1; return 0; } -- cgit v1.2.1