1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-10 06:57:35 +00:00

Ladybird: Don't overwrite argv[0] in spawn_helper_process()

This is already set correctly at the caller.
This commit is contained in:
MacDue 2023-02-05 21:21:54 +00:00 committed by Linus Groh
parent 8483efb399
commit 1c92e6ee9d
2 changed files with 1 additions and 2 deletions

View file

@ -15,7 +15,6 @@ ErrorOr<void> spawn_helper_process(StringView process_name, Span<StringView> arg
VERIFY(!paths.is_empty());
ErrorOr<void> result;
for (auto const& path : paths) {
arguments[0] = path.bytes_as_string_view();
result = Core::System::exec(path, arguments, search_in_path, environment);
if (!result.is_error())
break;