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

Unified Diff: src/DefaultWebRequestWinInet.cpp

Issue 10369004: File system path resolving (Closed)
Patch Set: Comments addressed Created April 30, 2013, 8:09 a.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
Index: src/DefaultWebRequestWinInet.cpp
===================================================================
--- a/src/DefaultWebRequestWinInet.cpp
+++ b/src/DefaultWebRequestWinInet.cpp
@@ -181,7 +181,7 @@
std::wstring canonizedUrl = Utils::CanonizeUrl(Utils::ToUTF16String(url, url.length()));
- std::string headersString;
+ std::string headersString = "";
Oleksandr 2013/04/30 08:13:07 This fixes an issue on XP. std::string's length is
Felix Dahlke 2013/04/30 09:14:52 Worth a comment I think. Or is this not the only p
for (int i = 0; i < requestHeaders.size(); i++)
{
headersString += requestHeaders[i].first + ": ";

Powered by Google App Engine
This is Rietveld