Index: base/files/file_util_win.cc |
diff --git a/base/files/file_util_win.cc b/base/files/file_util_win.cc |
index 9cb446bc87ce581cdb7088551c72ec0d134d2334..65dc5ce1e2fe7495624cc6d8c16b954395eb11ac 100644 |
--- a/base/files/file_util_win.cc |
+++ b/base/files/file_util_win.cc |
@@ -70,6 +70,14 @@ bool DeleteFileRecursive(const FilePath& path, |
return true; |
} |
+// Appends |mode_char| to |mode| before the optional character set encoding; see |
+// https://msdn.microsoft.com/library/yeby3zcb.aspx for details. |
+void AppendModeCharacter(base::char16 mode_char, base::string16* mode) { |
+ size_t comma_pos = mode->find(L','); |
+ mode->insert(comma_pos == base::string16::npos ? mode->length() : comma_pos, |
+ 1, mode_char); |
+} |
+ |
} // namespace |
FilePath MakeAbsoluteFilePath(const FilePath& input) { |
@@ -594,8 +602,14 @@ bool GetFileInfo(const FilePath& file_path, File::Info* results) { |
} |
FILE* OpenFile(const FilePath& filename, const char* mode) { |
+ // 'N' is unconditionally added below, so be sure there is not one already |
+ // present before a comma in |mode|. |
+ DCHECK( |
+ strchr(mode, 'N') == nullptr || |
+ (strchr(mode, ',') != nullptr && strchr(mode, 'N') > strchr(mode, ','))); |
ThreadRestrictions::AssertIOAllowed(); |
string16 w_mode = ASCIIToUTF16(mode); |
+ AppendModeCharacter(L'N', &w_mode); |
return _wfsopen(filename.value().c_str(), w_mode.c_str(), _SH_DENYNO); |
} |