summaryrefslogtreecommitdiffstats
path: root/src/HTTPServer
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-01-06 22:22:33 +0100
committermadmaxoft <github@xoft.cz>2014-01-06 22:22:33 +0100
commit9c8af58b7546448e9168ca6d70b5ba9a7f4330d7 (patch)
tree6c387a2d177f6ee3a22038ba760f6a4e4390332b /src/HTTPServer
parentMerge pull request #511 from mc-server/CmakeOutput (diff)
downloadcuberite-9c8af58b7546448e9168ca6d70b5ba9a7f4330d7.tar
cuberite-9c8af58b7546448e9168ca6d70b5ba9a7f4330d7.tar.gz
cuberite-9c8af58b7546448e9168ca6d70b5ba9a7f4330d7.tar.bz2
cuberite-9c8af58b7546448e9168ca6d70b5ba9a7f4330d7.tar.lz
cuberite-9c8af58b7546448e9168ca6d70b5ba9a7f4330d7.tar.xz
cuberite-9c8af58b7546448e9168ca6d70b5ba9a7f4330d7.tar.zst
cuberite-9c8af58b7546448e9168ca6d70b5ba9a7f4330d7.zip
Diffstat (limited to 'src/HTTPServer')
-rw-r--r--src/HTTPServer/HTTPConnection.cpp2
-rw-r--r--src/HTTPServer/HTTPFormParser.cpp1
-rw-r--r--src/HTTPServer/NameValueParser.cpp1
3 files changed, 1 insertions, 3 deletions
diff --git a/src/HTTPServer/HTTPConnection.cpp b/src/HTTPServer/HTTPConnection.cpp
index 68afdfc11..3d30ab177 100644
--- a/src/HTTPServer/HTTPConnection.cpp
+++ b/src/HTTPServer/HTTPConnection.cpp
@@ -57,7 +57,7 @@ void cHTTPConnection::SendNeedAuth(const AString & a_Realm)
void cHTTPConnection::Send(const cHTTPResponse & a_Response)
{
- ASSERT(m_State = wcsRecvIdle);
+ ASSERT(m_State == wcsRecvIdle);
a_Response.AppendToData(m_OutgoingData);
m_State = wcsSendingResp;
m_HTTPServer.NotifyConnectionWrite(*this);
diff --git a/src/HTTPServer/HTTPFormParser.cpp b/src/HTTPServer/HTTPFormParser.cpp
index 01c68881a..e661ea6f9 100644
--- a/src/HTTPServer/HTTPFormParser.cpp
+++ b/src/HTTPServer/HTTPFormParser.cpp
@@ -133,7 +133,6 @@ bool cHTTPFormParser::HasFormData(const cHTTPRequest & a_Request)
(a_Request.GetURL().find('?') != AString::npos)
)
);
- return false;
}
diff --git a/src/HTTPServer/NameValueParser.cpp b/src/HTTPServer/NameValueParser.cpp
index fd56f6b24..9ea8594ae 100644
--- a/src/HTTPServer/NameValueParser.cpp
+++ b/src/HTTPServer/NameValueParser.cpp
@@ -253,7 +253,6 @@ void cNameValueParser::Parse(const char * a_Data, int a_Size)
m_State = psValueRaw;
break;
}
- i++;
} // while (i < a_Size)
break;
} // case psEqual