From 889b74b68ee8910e0fac7d8c7807b670d7462498 Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Tue, 27 Sep 2022 17:40:03 +0300 Subject: connection.c: removed unused check for chunked replies --- src/microhttpd/connection.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c index 18bb36d6..f187da59 100644 --- a/src/microhttpd/connection.c +++ b/src/microhttpd/connection.c @@ -5193,13 +5193,9 @@ MHD_connection_handle_idle (struct MHD_Connection *connection) "Closing connection (failed to create response footer).")); continue; } - /* TODO: remove next 'if' */ - if ( (! connection->rp.props.chunked) || - (connection->write_buffer_send_offset == - connection->write_buffer_append_offset) ) - connection->state = MHD_CONNECTION_FULL_REPLY_SENT; - else - connection->state = MHD_CONNECTION_FOOTERS_SENDING; + mhd_assert (connection->write_buffer_send_offset < \ + connection->write_buffer_append_offset); + connection->state = MHD_CONNECTION_FOOTERS_SENDING; continue; case MHD_CONNECTION_FOOTERS_SENDING: mhd_assert (connection->rp.props.send_reply_body); -- cgit v1.2.3