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

Unified Diff: base/platform_file_posix.cc

Issue 11782005: Don't allow path traversal paths on the base file helpers (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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
Index: base/platform_file_posix.cc
===================================================================
--- base/platform_file_posix.cc (revision 175095)
+++ base/platform_file_posix.cc (working copy)
@@ -41,8 +41,10 @@
#endif
// TODO(erikkay): does it make sense to support PLATFORM_FILE_EXCLUSIVE_* here?
-PlatformFile CreatePlatformFile(const FilePath& name, int flags,
- bool* created, PlatformFileError* error_code) {
+PlatformFile CreatePlatformFileAllowTraversal(const FilePath& name,
+ int flags,
+ bool* created,
+ PlatformFileError* error_code) {
base::ThreadRestrictions::AssertIOAllowed();
int open_flags = 0;
« base/platform_file.h ('K') | « base/platform_file.cc ('k') | base/platform_file_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698