diff --git a/netwerk/protocol/http/src/nsHTTPChannel.cpp b/netwerk/protocol/http/src/nsHTTPChannel.cpp index a5041b4df841..67ed3e43ed18 100644 --- a/netwerk/protocol/http/src/nsHTTPChannel.cpp +++ b/netwerk/protocol/http/src/nsHTTPChannel.cpp @@ -57,8 +57,8 @@ nsHTTPChannel::nsHTTPChannel(nsIURI* i_URL, nsHTTPHandler* i_Handler): mURI(dont_QueryInterface(i_URL)), mConnected(PR_FALSE), - mState(HS_IDLE), mHandler(dont_QueryInterface(i_Handler)), + mState(HS_IDLE), mEventSinkGetter(dont_QueryInterface(i_EventSinkGetter)), mResponse(nsnull), mResponseDataListener(nsnull), diff --git a/netwerk/protocol/http/src/nsHTTPResponseListener.cpp b/netwerk/protocol/http/src/nsHTTPResponseListener.cpp index 4d8e0592b197..9e99e9b5e761 100644 --- a/netwerk/protocol/http/src/nsHTTPResponseListener.cpp +++ b/netwerk/protocol/http/src/nsHTTPResponseListener.cpp @@ -57,11 +57,11 @@ static const int kMAX_HEADER_SIZE = 60000; nsHTTPResponseListener::nsHTTPResponseListener(nsHTTPChannel* aConnection): mConsumer(nsnull), - mReadLength(0), - mHeadersDone(PR_FALSE), - mResponseContext(nsnull), mFirstLineParsed(PR_FALSE), - mResponse(nsnull) + mHeadersDone(PR_FALSE), + mReadLength(0), + mResponse(nsnull), + mResponseContext(nsnull) { NS_INIT_REFCNT(); diff --git a/xpcom/ds/nsObserverList.cpp b/xpcom/ds/nsObserverList.cpp index c045898e31db..4fd8939ce6ee 100644 --- a/xpcom/ds/nsObserverList.cpp +++ b/xpcom/ds/nsObserverList.cpp @@ -52,8 +52,8 @@ NS_COM nsresult NS_NewObserverList(nsIObserverList** anObserverList) } nsObserverList::nsObserverList() - : mObserverList(NULL), - mLock(nsnull) + : mLock(nsnull), + mObserverList(NULL) { NS_INIT_REFCNT(); mLock = PR_NewLock();