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

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

Issue 1814863004: Cleanup/Remove Windows XP/Vista version checks from Windows sandbox code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed Wow64 stuff. Created 4 years, 9 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 | « sandbox/win/src/target_services.cc ('k') | sandbox/win/tests/validation_tests/suite.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/src/win_utils.cc
diff --git a/sandbox/win/src/win_utils.cc b/sandbox/win/src/win_utils.cc
index ef4d803ab6d94c142f88e60b928d930542697503..fb108f519790b2c8e7e7040806c981261f8e7e11 100644
--- a/sandbox/win/src/win_utils.cc
+++ b/sandbox/win/src/win_utils.cc
@@ -198,10 +198,10 @@ DWORD IsReparsePoint(const base::string16& full_path) {
NOTREACHED_NT();
return error;
}
- } else if (FILE_ATTRIBUTE_REPARSE_POINT & attributes) {
+ }/* else if (FILE_ATTRIBUTE_REPARSE_POINT & attributes) {
// This is a reparse point.
return ERROR_SUCCESS;
- }
+ }*/
kylix_rd 2016/03/17 23:49:31 According to this: https://bugs.chromium.org/p/pro
Will Harris 2016/03/18 05:17:04 I think we should leave this check in.
jschuh 2016/03/18 07:03:23 kylix_rd - Sorry, I should have paid closer atten
kylix_rd 2016/03/18 14:08:53 Ok, that makes sense. Something to think about; W
passed_once = true;
last_pos = path.rfind(L'\\');
« no previous file with comments | « sandbox/win/src/target_services.cc ('k') | sandbox/win/tests/validation_tests/suite.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698