From 76e1608069ef540e47fecd39b0ec6eb1ce9ecba1 Mon Sep 17 00:00:00 2001 From: default Date: Thu, 13 Jul 2023 10:49:49 +0200 Subject: Fixed memory leaks. --- html.c | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'html.c') diff --git a/html.c b/html.c index c978bfb..8e3152d 100644 --- a/html.c +++ b/html.c @@ -519,6 +519,13 @@ d_char *html_top_controls(snac *snac, d_char *s) const char *bot = xs_dict_get(snac->config, "bot"); + xs *es1 = encode_html(xs_dict_get(snac->config, "name")); + xs *es2 = encode_html(xs_dict_get(snac->config, "bio")); + xs *es3 = encode_html(email); + xs *es4 = encode_html(telegram_bot); + xs *es5 = encode_html(telegram_chat_id); + xs *es6 = encode_html(purge_days); + xs *s1 = xs_fmt(_tmpl, snac->actor, L("Sensitive content"), @@ -550,19 +557,19 @@ d_char *html_top_controls(snac *snac, d_char *s) L("User setup..."), snac->actor, L("Display name"), - encode_html(xs_dict_get(snac->config, "name")), + es1, L("Avatar"), L("Bio"), - encode_html(xs_dict_get(snac->config, "bio")), + es2, strcmp(cw, "open") == 0 ? "checked" : "", L("Always show sensitive content"), L("Email address for notifications"), - encode_html(email), + es3, L("Telegram notifications (bot key and chat id)"), - encode_html(telegram_bot), - encode_html(telegram_chat_id), + es4, + es5, L("Maximum days to keep posts (0: server settings)"), - encode_html(purge_days), + es6, xs_type(d_dm_f_u) == XSTYPE_TRUE ? "checked" : "", L("Drop direct messages from people you don't follow"), xs_type(bot) == XSTYPE_TRUE ? "checked" : "", -- cgit v1.2.3