aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-03-25 20:48:45 +0200
committerChristian Grothoff <christian@grothoff.org>2018-03-25 20:48:45 +0200
commit22895a5504bb93534cec75422877aca8c5e65a02 (patch)
treefd79898d946d9eab280342796850fc06783ff6a6
parent621215675e5eec4140cab62c86e1d379f7fda7bf (diff)
downloadlibmicrohttpd-22895a5504bb93534cec75422877aca8c5e65a02.tar.gz
libmicrohttpd-22895a5504bb93534cec75422877aca8c5e65a02.zip
fix bug
-rw-r--r--src/lib/connection_call_handlers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/connection_call_handlers.c b/src/lib/connection_call_handlers.c
index f8ea0e4d..2e093495 100644
--- a/src/lib/connection_call_handlers.c
+++ b/src/lib/connection_call_handlers.c
@@ -3525,7 +3525,7 @@ MHD_request_handle_idle_ (struct MHD_Request *request)
3525 } 3525 }
3526 // FIXME: this is too much, NULLs out some of the things 3526 // FIXME: this is too much, NULLs out some of the things
3527 // initialized above... 3527 // initialized above...
3528 memset (&request, 3528 memset (request,
3529 0, 3529 0,
3530 sizeof (struct MHD_Request)); 3530 sizeof (struct MHD_Request));
3531 request->daemon = daemon; 3531 request->daemon = daemon;