math: use float_t and double_t in scalbnf and scalbn
[musl] / src / network / inet_ntop.c
index e9e2823..ca33343 100644 (file)
@@ -40,7 +40,7 @@ const char *inet_ntop(int af, const void *restrict a0, char *restrict s, socklen
                }
                if (max>2) {
                        buf[best] = buf[best+1] = ':';
-                       strcpy(buf+best+2, buf+best+max);
+                       memmove(buf+best+2, buf+best+max, i-best-max+1);
                }
                if (strlen(buf) < l) {
                        strcpy(s, buf);