Added a forgotten user_free() in html_post_handler().

This commit is contained in:
default 2022-10-26 08:18:21 +02:00
parent 3acc70b270
commit 003da7fec7

2
html.c
View File

@ -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;
}