mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
Bug 1305953 - Initialize some HttpServer & HttpServer::Connection members. r=kvijayan
This commit is contained in:
parent
563356ec62
commit
1228a095f4
@ -37,6 +37,8 @@ NS_IMPL_ISUPPORTS(HttpServer,
|
||||
nsILocalCertGetCallback)
|
||||
|
||||
HttpServer::HttpServer()
|
||||
: mPort()
|
||||
, mHttps()
|
||||
{
|
||||
}
|
||||
|
||||
@ -303,6 +305,8 @@ HttpServer::Connection::Connection(nsISocketTransport* aTransport,
|
||||
: mServer(aServer)
|
||||
, mTransport(aTransport)
|
||||
, mState(eRequestLine)
|
||||
, mPendingReqVersion()
|
||||
, mRemainingBodySize()
|
||||
, mCloseAfterRequest(false)
|
||||
{
|
||||
nsCOMPtr<nsIInputStream> input;
|
||||
|
Loading…
Reference in New Issue
Block a user