]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix constructor order in rev.12582
authorAmos Jeffries <squid3@treenet.co.nz>
Mon, 14 Jan 2013 11:44:31 +0000 (04:44 -0700)
committerAmos Jeffries <squid3@treenet.co.nz>
Mon, 14 Jan 2013 11:44:31 +0000 (04:44 -0700)
src/store.cc

index bc87d2292529fe8d10a41555e5c637e1e4220848..e8f2614bbc954aae1653b06b81afa7307300198e 100644 (file)
@@ -383,10 +383,10 @@ StoreEntry::storeClientType() const
 StoreEntry::StoreEntry() :
         mem_obj(NULL),
         hidden_mem_obj(NULL),
+        timestamp(-1),
+        lastref(-1),
         expires(-1),
         lastmod(-1),
-        lastref(-1),
-        timestamp(-1),
         swap_file_sz(0),
         refcount(0),
         flags(0),
@@ -404,10 +404,10 @@ StoreEntry::StoreEntry() :
 StoreEntry::StoreEntry(const char *aUrl, const char *aLogUrl) :
         mem_obj(NULL),
         hidden_mem_obj(NULL),
+        timestamp(-1),
+        lastref(-1),
         expires(-1),
         lastmod(-1),
-        lastref(-1),
-        timestamp(-1),
         swap_file_sz(0),
         refcount(0),
         flags(0),