snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 8222776ff9212f0f1bdb559fd277d0e13d68afd4
parent 7565b8f39701aaa53b4868ad9c17d0a6fb63c4d2
Author: default <nobody@localhost>
Date:   Thu,  8 Dec 2022 07:08:53 +0100

Little tweak to previous change to avoid a memleak.

Diffstat:
Mhtml.c | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/html.c b/html.c @@ -367,7 +367,13 @@ d_char *build_mentions(snac *snac, char *msg) if (type && strcmp(type, "Mention") == 0 && href && strcmp(href, snac->actor) != 0 && name) { - if (name[0] != '@') name = xs_str_cat(xs_str_new("@"), name); + xs *s1 = NULL; + + if (name[0] != '@') { + s1 = xs_fmt("@%s", name); + name = s1; + } + xs *l = xs_split(name, "@"); /* is it a name without a host? */