From 86339bc4ba69ca5c88fd5570875cf17a275bd019 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 22 May 2011 21:58:43 -0400 Subject: fix strncat and wcsncat (double null termination) also modify wcsncpy to use the same loop logic --- src/string/strncat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/string/strncat.c') diff --git a/src/string/strncat.c b/src/string/strncat.c index 255b7a72..08685ad6 100644 --- a/src/string/strncat.c +++ b/src/string/strncat.c @@ -4,7 +4,7 @@ char *strncat(char *d, const char *s, size_t n) { char *a = d; d += strlen(d); - while (n && (*d++ = *s++)) n--; + while (n && *s) n--, *d++ = *s++; *d++ = 0; return a; } -- cgit v1.2.1