]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fixed assertion failures in the authentication framework after the latest
authorserassio <>
Sun, 11 Sep 2005 16:19:41 +0000 (16:19 +0000)
committerserassio <>
Sun, 11 Sep 2005 16:19:41 +0000 (16:19 +0000)
changes to MemBuf.

src/helper.cc

index dcd19002c45abe3b94ad7aa0be6e1e964f832698..a7d953f914e55e7d87209db889254e5b7a31559e 100644 (file)
@@ -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);