From: Stefan Eissing Date: Tue, 18 Apr 2017 12:15:12 +0000 (+0000) Subject: On the trunk: X-Git-Tag: 2.5.0-alpha~469 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f5e7fb1d0b70aab17ae0bd3523faa2088da5e664;p=apache 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 --- 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); } }