snac2

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

commit 003da7fec75c2e1366eebc1c1b00792903a8c968
parent 3acc70b2704f5244fe4ad96b65a3286c42d47f79
Author: default <nobody@localhost>
Date:   Wed, 26 Oct 2022 08:18:21 +0200

Added a forgotten user_free() in html_post_handler().

Diffstat:
Mhtml.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/html.c b/html.c @@ -1098,6 +1098,8 @@ int html_post_handler(d_char *req, char *q_path, d_char *payload, int p_size, *b_size = strlen(*body); } + user_free(&snac); + return status; }