aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-12-31 15:53:26 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-12-31 15:53:26 +0300
commit8bb89d0be44c6667be546353f691bae62d63c9de (patch)
treebcd8f6b795013babe41fb4bedd6416226113797d
parentd5ea3b626b334507c0c53c0e4e4283cd512cb583 (diff)
downloadlibmicrohttpd-8bb89d0be44c6667be546353f691bae62d63c9de.tar.gz
libmicrohttpd-8bb89d0be44c6667be546353f691bae62d63c9de.zip
connection.c: muted false-positive compiler warning
-rw-r--r--src/microhttpd/connection.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index f9892a55..a452afcf 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -4475,6 +4475,8 @@ process_request_body (struct MHD_Connection *connection)
4475 mhd_assert (0 != available); 4475 mhd_assert (0 != available);
4476 4476
4477 overflow = false; 4477 overflow = false;
4478 chunk_size = 0; /* Mute possible compiler warning.
4479 The real value will be set later. */
4478 4480
4479 num_dig = MHD_strx_to_uint64_n_ (buffer_head, 4481 num_dig = MHD_strx_to_uint64_n_ (buffer_head,
4480 available, 4482 available,