summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/util.c b/util.c
index 9b3da1b..a2d7f28 100644
--- a/util.c
+++ b/util.c
@@ -44,6 +44,7 @@ parseuri(const char *s, struct uri *u, int rel)
if (p - s + 1 >= (ssize_t)sizeof(u->proto))
return -1; /* protocol too long */
memcpy(u->proto, s, p - s);
+ u->proto[p - s] = '\0';
p += 3; /* skip "://" */
} else {
p = s; /* no protocol format, set to start */
@@ -57,6 +58,7 @@ parseuri(const char *s, struct uri *u, int rel)
if (i + 1 >= sizeof(u->host))
return -1; /* host too long */
memcpy(u->host, p, i);
+ u->host[i] = '\0';
p = &p[i];
readpath: