2021-09-27 12:36:08 +02:00
|
|
|
diff --git base/command_line.cc base/command_line.cc
|
2023-01-30 18:43:54 +01:00
|
|
|
index ae845dcf3972a..a6fc08d159b74 100644
|
2021-09-27 12:36:08 +02:00
|
|
|
--- base/command_line.cc
|
|
|
|
+++ base/command_line.cc
|
2023-01-30 18:43:54 +01:00
|
|
|
@@ -339,11 +339,10 @@ void CommandLine::AppendSwitchPath(StringPiece switch_string,
|
2021-09-27 12:36:08 +02:00
|
|
|
|
|
|
|
void CommandLine::AppendSwitchNative(StringPiece switch_string,
|
|
|
|
CommandLine::StringPieceType value) {
|
2022-01-25 21:26:51 +01:00
|
|
|
-#if BUILDFLAG(IS_WIN)
|
2021-09-27 12:36:08 +02:00
|
|
|
const std::string switch_key = ToLowerASCII(switch_string);
|
2022-01-25 21:26:51 +01:00
|
|
|
+#if BUILDFLAG(IS_WIN)
|
2021-09-27 12:36:08 +02:00
|
|
|
StringType combined_switch_string(UTF8ToWide(switch_key));
|
2022-01-25 21:26:51 +01:00
|
|
|
#elif BUILDFLAG(IS_POSIX) || BUILDFLAG(IS_FUCHSIA)
|
2021-09-27 12:36:08 +02:00
|
|
|
- StringPiece switch_key = switch_string;
|
|
|
|
StringType combined_switch_string(switch_key);
|
|
|
|
#endif
|
|
|
|
size_t prefix_length = GetSwitchPrefixLength(combined_switch_string);
|