blob: ba13c13f18a8a3effb937d35562ff5cc5712a28e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- chrome/browser/platform_util_linux.cc.orig 2025-11-06 10:11:34 UTC
+++ chrome/browser/platform_util_linux.cc
@@ -301,7 +301,9 @@ void OnLaunchOptionsCreated(const std::string& command
argv.push_back(command);
argv.push_back(arg);
options.current_directory = working_directory;
+#if !BUILDFLAG(IS_BSD)
options.allow_new_privs = true;
+#endif
// xdg-open can fall back on mailcap which eventually might plumb through
// to a command that needs a terminal. Set the environment variable telling
// it that we definitely don't have a terminal available and that it should
|