From: Alex Rousskov Date: Fri, 4 Apr 2008 17:11:00 +0000 (-0600) Subject: Fixed wrong "this" parameter use after moving adaptation check start code X-Git-Tag: SQUID_3_1_0_1~49^2~302^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=274d02a52b6eb4ab6825fc818a53315ebe1b133d;p=thirdparty%2Fsquid.git Fixed wrong "this" parameter use after moving adaptation check start code from one object to another. --- diff --git a/src/client_side_request.cc b/src/client_side_request.cc index f374eb248c..0be698fcc1 100644 --- a/src/client_side_request.cc +++ b/src/client_side_request.cc @@ -1057,7 +1057,7 @@ ClientHttpRequest::doCallouts() calloutContext->adaptation_acl_check_done = true; if (Adaptation::AccessCheck::Start( Adaptation::methodReqmod, Adaptation::pointPreCache, - request, NULL, adaptationAclCheckDoneWrapper, this)) + request, NULL, adaptationAclCheckDoneWrapper, calloutContext)) return; // will call callback } #endif