From 43bc6bf0dddcb4fb9d74baae659cce2161dd5f50 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Fri, 28 Aug 2015 06:25:15 -0700 Subject: [PATCH] Bug 3696: crash when client delay pools are activated --- src/client_side.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/client_side.cc b/src/client_side.cc index 9adfe9ca26..0cb07ef397 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -3378,7 +3378,8 @@ httpAccept(const CommAcceptCbParams ¶ms) /* pools require explicit 'allow' to assign a client into them */ if (pools[pool].access) { - ch.accessList = pools[pool].access; + cbdataReferenceDone(ch.accessList); + ch.accessList = cbdataReference(pools[pool].access); allow_t answer = ch.fastCheck(); if (answer == ACCESS_ALLOWED) { -- 2.47.2