commit 7a60c71744f94edc66994537fddafaf0db594fb5
parent b8436ddfde4f26ece7cc3a442f05d44cb999118d
Author: default <nobody@localhost>
Date: Thu, 22 Sep 2022 17:44:23 +0200
Fixed memleak in greeting.
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/httpd.c b/httpd.c
@@ -41,6 +41,7 @@ void server_get_handler(d_char *req, char *q_path, int *status,
xs *list = user_list();
char *p, *uid;
xs *ul = xs_str_new("<ul class=\"snac-user-list\">\n");
+ xs *os = s;
p = list;
while (xs_list_iter(&p, &uid)) {
@@ -60,7 +61,7 @@ void server_get_handler(d_char *req, char *q_path, int *status,
ul = xs_str_cat(ul, "</ul>\n");
- s = xs_replace(s, "%userlist%", ul);
+ s = xs_replace(os, "%userlist%", ul);
}
*body = s;