2021-09-27 12:36:08 +02:00
|
|
|
diff --git base/command_line.cc base/command_line.cc
|
2023-04-04 20:00:13 +02:00
|
|
|
index 0ff6e0c111e63..543659c662892 100644
|
2021-09-27 12:36:08 +02:00
|
|
|
--- base/command_line.cc
|
|
|
|
+++ base/command_line.cc
|
2023-04-04 20:00:13 +02:00
|
|
|
@@ -346,11 +346,10 @@ void CommandLine::AppendSwitchNative(StringPiece switch_string,
|
|
|
|
#if BUILDFLAG(ENABLE_COMMANDLINE_SEQUENCE_CHECKS)
|
|
|
|
sequence_checker_.Check();
|
|
|
|
#endif
|
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);
|