]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix initializer missed in rev.14018
authorAmos Jeffries <squid3@treenet.co.nz>
Wed, 15 Apr 2015 14:07:51 +0000 (07:07 -0700)
committerAmos Jeffries <squid3@treenet.co.nz>
Wed, 15 Apr 2015 14:07:51 +0000 (07:07 -0700)
src/cbdata.cc

index 5348ae5e729118c418e30ca58e1591142f617d69..ad3c2e9aa11734f8eec832f2600a56700de0c9cb 100644 (file)
@@ -85,10 +85,8 @@ public:
         file(NULL),
         line(0),
 #endif
-        cookie(0)
-#if !WITH_VALGRIND
-        ,data(NULL) // ??
-#endif
+        cookie(0),
+        data(NULL)
     {}
     ~cbdata();