commit fb9100e3e7981e9fe9ec4171b905641f51b6ace3
parent 876be0435307bf0904977c08fc9b8796ec28ae49
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Thu, 1 Apr 2021 20:18:27 +0300
connection.c: mute compiler warning
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
@@ -1277,6 +1277,7 @@ build_header_response (struct MHD_Connection *connection)
must_add_chunked_encoding = false;
must_add_keep_alive = false;
must_add_content_length = false;
+ content_length_len = 0; /* Mute compiler warning only */
response_has_close = false;
switch (connection->state)
{