Index: Source/platform/network/HTTPParsers.cpp |
diff --git a/Source/platform/network/HTTPParsers.cpp b/Source/platform/network/HTTPParsers.cpp |
index 71b6f4dc27690722e24470e0ea136aa3f07de4ee..452814f5e6d6a8779fe5195536f630f62ea37f50 100644 |
--- a/Source/platform/network/HTTPParsers.cpp |
+++ b/Source/platform/network/HTTPParsers.cpp |
@@ -668,7 +668,8 @@ static bool parseHTTPHeaderValue(const char* s, size_t start, size_t size, Strin |
return false; |
} |
- *position = i + 1; |
+ // 2 for strlen("\r\n") |
+ *position = i + 2; |
return true; |
} |