1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-11 13:06:59 +03:00

Remove redundant check

`is_ld("ld")` returns true
This commit is contained in:
Rui Ueyama 2023-11-23 11:47:29 +09:00
parent 1ae4b9571b
commit d3867766af

View File

@ -138,7 +138,7 @@ int posix_spawnp(pid_t *pid, const char *file,
const posix_spawnattr_t *attrp,
char *const *argv, char *const *envp) {
debug_print("posix_spawnp %s\n", file);
if (!strcmp(file, "ld") || is_ld(file))
if (is_ld(file))
file = get_mold_path();
typeof(posix_spawnp) *real = dlsym(RTLD_NEXT, "posix_spawnp");
return real(pid, file, file_actions, attrp, argv, envp);