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

Unified Diff: base/platform_file_win.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, 12 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_win.cc
===================================================================
--- base/platform_file_win.cc (revision 175095)
+++ base/platform_file_win.cc (working copy)
@@ -9,11 +9,10 @@
#include "base/threading/thread_restrictions.h"
namespace base {
-
-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();
DWORD disposition = 0;

Powered by Google App Engine
This is Rietveld 408576698