From 3f62860342600f2cf3048e586b1e9c8670134045 Mon Sep 17 00:00:00 2001 From: John Sully Date: Mon, 10 Feb 2020 19:52:57 -0500 Subject: [PATCH] Fix issue #119 Former-commit-id: 46224721237616c345f6726b721a354d7bda71df --- src/server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server.cpp b/src/server.cpp index c6f360905..2d6027348 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -1690,7 +1690,7 @@ void clientsCron(int iel) { /* The following functions do different service checks on the client. * The protocol is that they return non-zero if the client was * terminated. */ - if (clientsCronHandleTimeout(c,now)) goto LContinue; + if (clientsCronHandleTimeout(c,now)) continue; // Client free'd so don't release the lock if (clientsCronResizeQueryBuffer(c)) goto LContinue; if (clientsCronTrackExpansiveClients(c)) goto LContinue; LContinue: