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

Unified Diff: sandbox/win/src/named_pipe_dispatcher.cc

Issue 149513004: Fix nit introduced in r247511 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/src/named_pipe_dispatcher.cc
diff --git a/sandbox/win/src/named_pipe_dispatcher.cc b/sandbox/win/src/named_pipe_dispatcher.cc
index da4045c274547d4beed6c6db7b2dff3df83deca4..daf88f805dc5f85f0308b9f9e20b44a6d324eb9e 100644
--- a/sandbox/win/src/named_pipe_dispatcher.cc
+++ b/sandbox/win/src/named_pipe_dispatcher.cc
@@ -55,9 +55,9 @@ bool NamedPipeDispatcher::CreateNamedPipe(
iter != paths.end(); ++iter) {
base::SplitString(*iter, '\\', &innerpaths);
for (std::vector<base::string16>::const_iterator iter2 = innerpaths.begin();
- iter2 != innerpaths.end(); ++iter2) {
+ iter2 != innerpaths.end(); ++iter2) {
if (*iter2 == L"..")
- return true;
+ return true;
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698