aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/connection.c')
-rw-r--r--src/microhttpd/connection.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 3b17e0c3..a85e5903 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -3010,7 +3010,8 @@ MHD_connection_handle_idle (struct MHD_Connection *connection)
3010 /* Response is not required anymore for this conectnion. */ 3010 /* Response is not required anymore for this conectnion. */
3011 if (NULL != connection->response) 3011 if (NULL != connection->response)
3012 { 3012 {
3013 struct MHD_Response * const resp_clr = connection->response; 3013 struct MHD_Response *resp_clr = connection->response;
3014
3014 connection->response = NULL; 3015 connection->response = NULL;
3015 MHD_destroy_response (resp_clr); 3016 MHD_destroy_response (resp_clr);
3016 } 3017 }