libmicrohttpd

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

commit f2540786443afdb8e2e6ce7af602f9223ee63515
parent 6d7825e8524872f585562574df1233b692ce81cd
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Tue, 23 Nov 2021 15:11:19 +0300

process_request_body(): minor improvement of code readability

Diffstat:
Msrc/microhttpd/connection.c | 5+++--
Msrc/microhttpd/internal.h | 7++++---
2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c @@ -3142,10 +3142,11 @@ process_request_body (struct MHD_Connection *connection) if (0 == available) break; } - if (connection->current_chunk_offset < - connection->current_chunk_size) + if (0 != connection->current_chunk_size) { uint64_t cur_chunk_left; + mhd_assert (connection->current_chunk_offset < \ + connection->current_chunk_size); /* we are in the middle of a chunk, give as much as possible to the client (without crossing chunk boundaries) */ diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h @@ -1292,9 +1292,10 @@ struct MHD_Connection /** * If we are receiving with chunked encoding, where are we right - * now? Set to 0 if we are waiting to receive the chunk size; - * otherwise, this is the size of the current chunk. A value of - * zero is also used when we're at the end of the chunks. + * now? + * Set to 0 if we are waiting to receive the chunk size; + * otherwise, this is the size of the current chunk. + * A value of zero is also used when we're at the end of the chunks. */ uint64_t current_chunk_size;