aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-01-24 15:37:17 +0000
committerChristian Grothoff <christian@grothoff.org>2011-01-24 15:37:17 +0000
commit67bd27b5c1827e9a1c4d122ef21e5371623da990 (patch)
treef61477f38a480fef448300a078edfc1d07000c8e
parent631c1d244c5282b7e95f1f6d30853627496e36e0 (diff)
downloadlibmicrohttpd-67bd27b5c1827e9a1c4d122ef21e5371623da990.tar.gz
libmicrohttpd-67bd27b5c1827e9a1c4d122ef21e5371623da990.zip
fixing 1646
-rw-r--r--ChangeLog3
-rw-r--r--src/daemon/daemon.c2
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c9847cbc..f60ab13f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
1Mon Jan 24 16:36:35 CET 2011
2 Fixing compilation error if DAUTH_SUPPORT was 0 (#1646). -CG/bplant
3
1Tue Jan 18 23:58:09 CET 2011 4Tue Jan 18 23:58:09 CET 2011
2 Fixing hash calculation in digest auth; old function had 5 Fixing hash calculation in digest auth; old function had
3 collisions causing the browser to challenge users for 6 collisions causing the browser to challenge users for
diff --git a/src/daemon/daemon.c b/src/daemon/daemon.c
index 2699e7e9..3020f08e 100644
--- a/src/daemon/daemon.c
+++ b/src/daemon/daemon.c
@@ -1793,8 +1793,10 @@ MHD_start_daemon_va (unsigned int options,
1793 MHD_DLOG (retVal, 1793 MHD_DLOG (retVal,
1794 "MHD poll support only works with MHD_USE_THREAD_PER_CONNECTION\n"); 1794 "MHD poll support only works with MHD_USE_THREAD_PER_CONNECTION\n");
1795#endif 1795#endif
1796#if DAUTH_SUPPORT
1796 free (retVal->nnc); 1797 free (retVal->nnc);
1797 pthread_mutex_destroy (&retVal->nnc_lock); 1798 pthread_mutex_destroy (&retVal->nnc_lock);
1799#endif
1798 free (retVal); 1800 free (retVal);
1799 return NULL; 1801 return NULL;
1800 } 1802 }