From 820fccdefe3774d2902f0191966a5c2848405faa Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 26 Dec 2012 23:48:02 -0500 Subject: [PATCH] fix alignment logic in strlcpy --- src/string/strlcpy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/string/strlcpy.c b/src/string/strlcpy.c index 6aeb106a..4d3ff92a 100644 --- a/src/string/strlcpy.c +++ b/src/string/strlcpy.c @@ -16,7 +16,7 @@ size_t strlcpy(char *d, const char *s, size_t n) const size_t *ws; if (!n--) goto finish; - if (((uintptr_t)s & ALIGN) != ((uintptr_t)d & ALIGN)) { + if (((uintptr_t)s & ALIGN) == ((uintptr_t)d & ALIGN)) { for (; ((uintptr_t)s & ALIGN) && n && (*d=*s); n--, s++, d++); if (n && *s) { wd=(void *)d; ws=(const void *)s; -- 2.20.1