From: Amos Jeffries Date: Fri, 28 Aug 2015 13:20:53 +0000 (-0700) Subject: Bug 3696: crash when client delay pools are activated X-Git-Tag: SQUID_4_0_1~89 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=643a263b9f9a69dca11e9e4546094bee0cc41f0f;p=thirdparty%2Fsquid.git Bug 3696: crash when client delay pools are activated --- diff --git a/src/client_side.cc b/src/client_side.cc index 65d0092cba..52102fbc8b 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -3484,7 +3484,8 @@ ConnStateData::start() /* 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) {