From: serassio <> Date: Sun, 11 Sep 2005 16:19:41 +0000 (+0000) Subject: Fixed assertion failures in the authentication framework after the latest X-Git-Tag: SQUID_3_0_PRE4~638 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90bed1c4cedceea5e8972b041112092733c5d86f;p=thirdparty%2Fsquid.git Fixed assertion failures in the authentication framework after the latest changes to MemBuf. --- diff --git a/src/helper.cc b/src/helper.cc index dcd19002c4..a7d953f914 100644 --- a/src/helper.cc +++ b/src/helper.cc @@ -1,6 +1,6 @@ /* - * $Id: helper.cc,v 1.66 2005/08/31 19:15:36 wessels Exp $ + * $Id: helper.cc,v 1.67 2005/09/11 10:19:41 serassio Exp $ * * DEBUG: section 84 Helper process maintenance * AUTHOR: Harvest Derived? @@ -126,6 +126,7 @@ helperOpenServers(helper * hlp) srv->rfd = rfd; srv->wfd = wfd; srv->rbuf = (char *)memAllocBuf(8192, &srv->rbuf_sz); + srv->wqueue = new MemBuf; srv->roffset = 0; srv->requests = (helper_request **)xcalloc(hlp->concurrency ? hlp->concurrency : 1, sizeof(*srv->requests)); srv->parent = cbdataReference(hlp);