1
0
mirror of https://github.com/tmux/tmux.git synced 2025-04-05 23:58:58 +00:00

Stopped ignoring error on client command parse.

I figure this might be worth doing. I know now we output the error on
the client and the server now has error handling code for nothing in
it's argument handling code. I think ideally we should pass the parsed
cmd structure to the server and thus avoid parsing twice. This commit
doesn't do that yet.
This commit is contained in:
ubinator 2025-02-18 22:39:24 +01:00
parent 9a377485be
commit 7479ec3025
No known key found for this signature in database
GPG Key ID: E79F137F74C7A3BD

View File

@ -266,8 +266,11 @@ client_main(struct event_base *base, int argc, char **argv, uint64_t flags,
if (cmd_list_any_have(pr->cmdlist, CMD_STARTSERVER))
flags |= CLIENT_STARTSERVER;
cmd_list_free(pr->cmdlist);
} else
} else {
fprintf(stderr, "%s\n", pr->error);
free(pr->error);
return 1;
}
args_free_values(values, argc);
free(values);
}