Fix multipart parser in crlf blobs

This commit is contained in:
Felipe Zimmerle
2015-09-16 15:01:53 -03:00
parent c8f91ca856
commit 7f747d1dd0

View File

@@ -203,9 +203,9 @@ bool Multipart::process(std::string data) {
checkForCrlfLf(block);
if (this->crlf) {
block.erase(0, 1);
}
//if (this->crlf) {
// block.erase(0, 1);
//}
blobs.push_back(block);
lastValidBoundary = end;