X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstring%2Fwcsncpy.c;h=714eeb641ae865216c77cd32249824f15377f07e;hb=357876052b125dcd74882f61afec19d8f519074c;hp=0164208de648458cd849bd157325690f6349704b;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/string/wcsncpy.c b/src/string/wcsncpy.c index 0164208d..714eeb64 100644 --- a/src/string/wcsncpy.c +++ b/src/string/wcsncpy.c @@ -3,7 +3,7 @@ wchar_t *wcsncpy(wchar_t *d, const wchar_t *s, size_t n) { wchar_t *a = d; - while (n && (*d++ = *s++)) n--; + while (n && *s) n--, *d++ = *s++; wmemset(d, 0, n); return a; }