commit 9bf8e55fe1b8306e1319956dab78b462477a4b63
parent 0ad862d39957b4ad107314d19ff3ac93d5ecbf07
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 16 Feb 2018 03:10:24 +0100
fixing #5278 as suggested by reporter
Diffstat:
5 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,6 @@
+Fri Feb 16 03:09:33 CET 2018
+ Fixing #5278 as suggested by reporter. -CG/texec
+
Thu Feb 1 10:12:22 CET 2018
Releasing GNU libicrohttpd 0.9.59. -CG
diff --git a/configure.ac b/configure.ac
@@ -2022,6 +2022,7 @@ doc/examples/Makefile
m4/Makefile
src/Makefile
src/include/Makefile
+src/lib/Makefile
src/microhttpd/Makefile
src/examples/Makefile
src/testcurl/Makefile
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
@@ -126,7 +126,7 @@ typedef intptr_t ssize_t;
* Current version of the library.
* 0x01093001 = 1.9.30-1.
*/
-#define MHD_VERSION 0x00095900
+#define MHD_VERSION 0x00095901
/**
* MHD-internal return code for "YES".
diff --git a/src/lib/connection_add.c b/src/lib/connection_add.c
@@ -288,7 +288,7 @@ thread_main_handle_connection (void *data)
num_ready = MHD_SYS_select_ (maxsock + 1,
&rs,
&ws,
- NULL,
+ &es,
tvp);
if (num_ready < 0)
{
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
@@ -1938,7 +1938,7 @@ thread_main_handle_connection (void *data)
num_ready = MHD_SYS_select_ (maxsock + 1,
&rs,
&ws,
- NULL,
+ &es,
tvp);
if (num_ready < 0)
{