aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/daemon.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-03-10 16:43:47 +0100
committerChristian Grothoff <christian@grothoff.org>2017-03-10 16:43:57 +0100
commitd946118778d04839f928886f4463d3f43f5b3568 (patch)
treedcd5d5f4df044c1a4a26f6021d6f2360f4efa092 /src/microhttpd/daemon.c
parent91548850d961783a8f5b288c69ce83ecb89d3ddc (diff)
downloadlibmicrohttpd-d946118778d04839f928886f4463d3f43f5b3568.tar.gz
libmicrohttpd-d946118778d04839f928886f4463d3f43f5b3568.zip
fix NPE (COV 164294)
Diffstat (limited to 'src/microhttpd/daemon.c')
-rw-r--r--src/microhttpd/daemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 98f17192..f93dbd21 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -5792,7 +5792,7 @@ close_all_connections (struct MHD_Daemon *daemon)
5792 else if (used_tls && 5792 else if (used_tls &&
5793 used_thr_p_c && 5793 used_thr_p_c &&
5794 (! susp->urh->clean_ready) ) 5794 (! susp->urh->clean_ready) )
5795 shutdown (urh->app.socket, 5795 shutdown (susp->urh->app.socket,
5796 SHUT_RDWR); /* Wake thread by shutdown of app socket. */ 5796 SHUT_RDWR); /* Wake thread by shutdown of app socket. */
5797#endif /* HTTPS_SUPPORT */ 5797#endif /* HTTPS_SUPPORT */
5798 else 5798 else