libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 08ea0cc894bfdd9aeddeb8bb113514c247d2c69e
parent d533ad512a70009ba17a4a0579d9919b270ccf0a
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Wed,  1 May 2019 14:28:13 +0300

response.c: added missing assigment of MHD_HTTP_Header::value_size

Diffstat:
Msrc/microhttpd/response.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/microhttpd/response.c b/src/microhttpd/response.c @@ -111,6 +111,7 @@ add_response_entry (struct MHD_Response *response, free (hdr); return MHD_NO; } + hdr->value_size = strlen (content); hdr->kind = kind; hdr->next = response->first_header; response->first_header = hdr;