From b0cd96478c58b91629a2ed29ef663a8c3554cdad Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Thu, 24 Jun 2004 15:15:27 +0000
Subject: [PATCH] oops 5 bytes makes 4 letters plus zero byte

---
 lib/inet_ntop.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/inet_ntop.c b/lib/inet_ntop.c
index eec06073be..0408bfdee5 100644
--- a/lib/inet_ntop.c
+++ b/lib/inet_ntop.c
@@ -155,7 +155,7 @@ static const char *inet_ntop6 (const u_char *src, char *dst, size_t size)
       tp += strlen(tp);
       break;
     }
-    tp += snprintf(tp, 4, "%lx", words[i]);
+    tp += snprintf(tp, 5, "%lx", words[i]);
   }
 
   /* Was it a trailing run of 0x00's?
-- 
GitLab