Make private applets hidden

This commit is contained in:
topjohnwu
2022-08-27 14:50:28 -07:00
parent 646260ad6d
commit 38325e708e
3 changed files with 48 additions and 26 deletions
+1 -1
View File
@@ -177,7 +177,7 @@ static void connect_companion(int client, bool is_64_bit) {
fcntl(fds[1], F_SETFD, 0);
char buf[16];
snprintf(buf, sizeof(buf), "%d", fds[1]);
execl(exe.data(), "zygisk", "companion", buf, (char *) nullptr);
execl(exe.data(), "", "zygisk", "companion", buf, (char *) nullptr);
exit(-1);
}
close(fds[1]);