From 1cc61723c9cd728654676a9d84905b205b5b0e4a Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Fri, 9 Oct 2020 19:15:25 -0400 Subject: Strip formatting from URLs Notably this fixes opening URLs from litterbox queries where part of the URL is highlighted. --- url.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/url.c b/url.c index 3f7f512..53fe271 100644 --- a/url.c +++ b/url.c @@ -86,14 +86,19 @@ static void push(uint id, const char *nick, const char *str, size_t len) { struct URL *url = &ring.urls[ring.len++ % Cap]; free(url->nick); free(url->url); + url->id = id; url->nick = NULL; if (nick) { url->nick = strdup(nick); if (!url->nick) err(EX_OSERR, "strdup"); } - url->url = strndup(str, len); - if (!url->url) err(EX_OSERR, "strndup"); + url->url = malloc(len + 1); + if (!url->url) err(EX_OSERR, "malloc"); + + char buf[1024]; + snprintf(buf, sizeof(buf), "%.*s", (int)len, str); + styleStrip(&(struct Cat) { url->url, len + 1, 0 }, buf); } void urlScan(uint id, const char *nick, const char *mesg) { -- cgit 1.4.1