libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit c13d2767e2ffe13bc59505f3d96d8c0de61d5768
parent 7d3050325e3b77a061b40ea9ce77a360d14b4dea
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Sun, 21 May 2017 17:24:15 +0300

Fixed missing mutex unlock in 7d3050325e3b77a061b40ea9ce77a360d14b4dea

Diffstat:
Msrc/microhttpd/daemon.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c @@ -2744,6 +2744,7 @@ MHD_suspend_connection (struct MHD_Connection *connection) MHD_DLOG (daemon, _("Error: connection sheduled for \"upgrade\" cannot be suspended")); #endif /* HAVE_MESSAGES */ + MHD_mutex_unlock_chk_ (&daemon->cleanup_connection_mutex); return; } #endif /* UPGRADE_SUPPORT */