Haiku: fix building

This commit is contained in:
李通洲
2025-02-18 15:49:39 +08:00
parent 7aceb1072a
commit b8b2fab499
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -327,12 +327,12 @@ void ffProcessGetInfoLinux(pid_t pid, FFstrbuf* processName, FFstrbuf* exe, cons
{
// args = "/bin/bash -l"
// argc = 2
int argc = info.argc - 1; // 1
const char* arg0End = strchr(p, ' '); // " -l"
int argc = info.argc - 1;
const char* arg0End = strchr(info.args, ' ');
for (const char* p = arg0End + 1; (p = strchr(p, ' ')); ++p)
--argc;
if (argc == 1)
ffStrbufSetNS(exe, info.args, arg0End - info.args /* /bin/bash */);
if (argc == 1) // No whitespace in the file path
ffStrbufSetNS(exe, (uint32_t) (arg0End - info.args), info.args);
}
}
}