From f5e7fb1d0b70aab17ae0bd3523faa2088da5e664 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Tue, 18 Apr 2017 12:15:12 +0000 Subject: [PATCH] On the trunk: mod_http2: normalize zombie slot state before pushing it on the free list. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1791773 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http2/h2_workers.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/http2/h2_workers.c b/modules/http2/h2_workers.c index 9c7afc64e6..0bbb65223f 100644 --- a/modules/http2/h2_workers.c +++ b/modules/http2/h2_workers.c @@ -143,6 +143,7 @@ static void cleanup_zombies(h2_workers *workers) slot->thread = NULL; } apr_atomic_dec32(&workers->worker_count); + slot->next = NULL; push_slot(&workers->free, slot); } } -- 2.50.1