sfeed

simple feed reader - forked from git.codemadness.org/sfeed
git clone git://src.gearsix.net/sfeed
Log | Files | Refs | Atom | README | LICENSE

commit e0f7dae9ac8435a254aff53f98ca66a3ee93e658
parent 40627fc9edc2422c97d4287e33b7784b7202fc71
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Fri, 16 Feb 2018 12:17:56 +0100

util.c: parseuri(): fix incorrect NUL termination for IPv6 addresses

Diffstat:
Mutil.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util.c b/util.c @@ -53,7 +53,7 @@ parseuri(const char *s, struct uri *u, int rel) if (!(b = strchr(p, ']')) || b - p >= (ssize_t)sizeof(u->host)) return -1; memcpy(u->host, p + 1, b - p - 1); - u->host[b - p] = '\0'; + u->host[b - p - 1] = '\0'; p = b + 1; } else { /* domain / host part, skip until port, path or end. */