1
0

Fixed warnings in HTTP parser.

This commit is contained in:
madmaxoft
2013-12-20 16:20:54 +01:00
parent 812375fab1
commit b66722f735
4 changed files with 15 additions and 5 deletions

View File

@@ -109,6 +109,11 @@ bool cHTTPFormParser::Finish(void)
ParseFormUrlEncoded();
break;
}
default:
{
// Nothing needed for other formats
break;
}
}
return (m_IsValid && m_IncomingData.empty());
}