1
0
Fork 0

Merge pull request #3076 from cuberite/FixHttpAuthFlag

HTTP: Added missing HasAuth flag initialization.
This commit is contained in:
Julian Laubstein 2016-03-11 14:30:01 +01:00
commit a9cfa66e84
1 changed files with 2 additions and 1 deletions

View File

@ -107,7 +107,8 @@ void cHTTPOutgoingResponse::AppendToData(AString & a_DataStream) const
cHTTPIncomingRequest::cHTTPIncomingRequest(const AString & a_Method, const AString & a_URL):
Super(mkRequest),
m_Method(a_Method),
m_URL(a_URL)
m_URL(a_URL),
m_HasAuth(false)
{
}