Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: jni/AndroidWebRequest.cpp

Issue 5735553819475968: Don't convert header values to lowercase (Closed)
Patch Set: Created Nov. 20, 2013, 1:54 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jni/AndroidWebRequest.cpp
===================================================================
--- a/jni/AndroidWebRequest.cpp
+++ b/jni/AndroidWebRequest.cpp
@@ -252,7 +252,6 @@
headerValue = TrimString(headerValue);
std::transform(headerName.begin(), headerName.end(), headerName.begin(), ::tolower);
- std::transform(headerValue.begin(), headerValue.end(), headerValue.begin(), ::tolower);
result.responseHeaders.push_back(std::pair<std::string, std::string>(headerName, headerValue));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld