aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2023-12-02 20:32:42 +0900
committerChristian Grothoff <grothoff@gnunet.org>2023-12-02 20:32:42 +0900
commit4e5b65706e1c89d6d2845bd1fe9e1a91569e97d8 (patch)
tree435a1a4b7014dddba8d3578a53b69baa32a33bb8
parent38c06b6aeb3aa3b4ab4cab6cce9e08c55c2a9b9c (diff)
downloadlibmicrohttpd-4e5b65706e1c89d6d2845bd1fe9e1a91569e97d8.tar.gz
libmicrohttpd-4e5b65706e1c89d6d2845bd1fe9e1a91569e97d8.zip
fix #7967
-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 78d7d5df..f9892a55 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -3670,7 +3670,9 @@ check_and_grow_read_buffer_space (struct MHD_Connection *c)
3670 case MHD_CONNECTION_FOOTERS_SENDING: 3670 case MHD_CONNECTION_FOOTERS_SENDING:
3671 case MHD_CONNECTION_FULL_REPLY_SENT: 3671 case MHD_CONNECTION_FULL_REPLY_SENT:
3672 case MHD_CONNECTION_CLOSED: 3672 case MHD_CONNECTION_CLOSED:
3673#ifdef UPGRADE_SUPPORT
3673 case MHD_CONNECTION_UPGRADE: 3674 case MHD_CONNECTION_UPGRADE:
3675#endif
3674 default: 3676 default:
3675 stage = MHD_PROC_RECV_BODY_NORMAL; 3677 stage = MHD_PROC_RECV_BODY_NORMAL;
3676 mhd_assert (0); 3678 mhd_assert (0);