implement reallocarray
[musl] / src / network / inet_ntop.c
index e9e2823..4bfef2c 100644 (file)
@@ -1,7 +1,5 @@
 #include <sys/socket.h>
-#include <netinet/in.h>
 #include <arpa/inet.h>
-#include <netdb.h>
 #include <errno.h>
 #include <stdio.h>
 #include <string.h>
@@ -38,9 +36,9 @@ const char *inet_ntop(int af, const void *restrict a0, char *restrict s, socklen
                        j = strspn(buf+i, ":0");
                        if (j>max) best=i, max=j;
                }
-               if (max>2) {
+               if (max>3) {
                        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);