Commit 28e85318 authored by wfh@chromium.org's avatar wfh@chromium.org

Fix nit introduced in r247511

BUG=334897
TBR=rvargas@chromium.org

Review URL: https://codereview.chromium.org/149513004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@247725 0039d316-1c4b-4281-b951-d872f2087c98
parent bb1c86cd
...@@ -55,9 +55,9 @@ bool NamedPipeDispatcher::CreateNamedPipe( ...@@ -55,9 +55,9 @@ bool NamedPipeDispatcher::CreateNamedPipe(
iter != paths.end(); ++iter) { iter != paths.end(); ++iter) {
base::SplitString(*iter, '\\', &innerpaths); base::SplitString(*iter, '\\', &innerpaths);
for (std::vector<base::string16>::const_iterator iter2 = innerpaths.begin(); for (std::vector<base::string16>::const_iterator iter2 = innerpaths.begin();
iter2 != innerpaths.end(); ++iter2) { iter2 != innerpaths.end(); ++iter2) {
if (*iter2 == L"..") if (*iter2 == L"..")
return true; return true;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment