--------------------- PatchSet 1585 Date: 2005/08/24 15:42:29 Author: dwsquid Branch: squid3-icap Tag: (none) Log: fix initialization ordering in constructor Members: src/ICAPAnchor.cc:1.1.2.11->1.1.2.12 Index: squid3/src/ICAPAnchor.cc =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/Attic/ICAPAnchor.cc,v retrieving revision 1.1.2.11 retrieving revision 1.1.2.12 diff -u -r1.1.2.11 -r1.1.2.12 --- squid3/src/ICAPAnchor.cc 24 Aug 2005 05:43:31 -0000 1.1.2.11 +++ squid3/src/ICAPAnchor.cc 24 Aug 2005 15:42:29 -0000 1.1.2.12 @@ -10,7 +10,7 @@ CBDATA_CLASS_INIT(ICAPAnchor); -ICAPAnchor::ICAPAnchor(): virgin(NULL), adapted(NULL), httpState(NULL) { +ICAPAnchor::ICAPAnchor(): httpState(NULL), virgin(NULL), adapted(NULL) { debug(93,5)("ICAPAnchor constructed, this=%p\n", this); }