]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Remove unused ClientSocketContext::next member
authorAmos Jeffries <squid3@treenet.co.nz>
Sun, 15 Nov 2015 13:40:50 +0000 (05:40 -0800)
committerAmos Jeffries <squid3@treenet.co.nz>
Sun, 15 Nov 2015 13:40:50 +0000 (05:40 -0800)
src/client_side.cc
src/client_side.h

index a0b0b126a22f2e5d703841ad4a9e1fc95e5834f1..28542fadc680249b61a1bc9404d99a6e2a7eec45 100644 (file)
@@ -235,9 +235,6 @@ ClientSocketContext::~ClientSocketContext()
     }
 
     httpRequestFree(http);
-
-    /* clean up connection links to us */
-    assert(this != next.getRaw());
 }
 
 void
@@ -271,7 +268,6 @@ ClientSocketContext::ClientSocketContext(const Comm::ConnectionPointer &aConn, C
     clientConnection(aConn),
     http(aReq),
     reply(NULL),
-    next(NULL),
     writtenToSocket(0),
     mayUseConnection_ (false),
     connRegistered_ (false)
index cc467358b60ac8b9de31dd6b20374c576adb478a..f31561661241a567d3ce41f004ed84a246cc514c 100644 (file)
@@ -82,7 +82,6 @@ public:
     ClientHttpRequest *http;    /* we pretend to own that job */
     HttpReply *reply;
     char reqbuf[HTTP_REQBUF_SZ];
-    Pointer next;
 
     struct {