]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/http.cc
Initialize all HttpStateData data members (#1029)
[thirdparty/squid.git] / src / http.cc
index 027514032d33775cba7a8064bc63449deb14cc39..b8a5072fea5e263203b575ce67dd26abb8b9bc64 100644 (file)
@@ -76,16 +76,9 @@ static void copyOneHeaderFromClientsideRequestToUpstreamRequest(const HttpHeader
 
 HttpStateData::HttpStateData(FwdState *theFwdState) :
     AsyncJob("HttpStateData"),
-    Client(theFwdState),
-    lastChunk(0),
-    httpChunkDecoder(NULL),
-    payloadSeen(0),
-    payloadTruncated(0),
-    sawDateGoBack(false)
+    Client(theFwdState)
 {
     debugs(11,5, "HttpStateData " << this << " created");
-    ignoreCacheControl = false;
-    surrogateNoStore = false;
     serverConnection = fwd->serverConnection();
 
     if (fwd->serverConnection() != NULL)