Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1223)

Unified Diff: util/test/multiprocess_exec_win.cc

Issue 854363006: win: Implementation of http_transport_win based on WinInet (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@multiproc-impl
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « util/net/http_transport_win.cc ('k') | util/util.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/test/multiprocess_exec_win.cc
diff --git a/util/test/multiprocess_exec_win.cc b/util/test/multiprocess_exec_win.cc
index 19b5148329049e7cc0f5ddd4dd873ba81f07bdd4..61f99009153499454505cbfa5c33ae026037841f 100644
--- a/util/test/multiprocess_exec_win.cc
+++ b/util/test/multiprocess_exec_win.cc
@@ -136,10 +136,10 @@ void MultiprocessExec::PreFork() {
ASSERT_FALSE(command_.empty());
argv_.clear();
+ ArgvQuote(base::UTF8ToUTF16(command_), &argv_);
for (size_t i = 0; i < arguments_.size(); ++i) {
+ argv_ += L" ";
ArgvQuote(base::UTF8ToUTF16(arguments_[i]), &argv_);
- if (i < arguments_.size() - 1)
- argv_ += L" ";
}
// Make pipes for child-to-parent and parent-to-child communication. Mark them
« no previous file with comments | « util/net/http_transport_win.cc ('k') | util/util.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698