Merge branch 'obsd-master' into master

pull/3145/head
Thomas Adam 2022-03-28 10:01:11 +01:00
commit ac16f2c641
1 changed files with 4 additions and 2 deletions

View File

@ -236,8 +236,10 @@ server_start(struct tmuxproc *client, int flags, struct event_base *base,
if (c != NULL) {
c->exit_message = cause;
c->flags |= CLIENT_EXIT;
} else
free(cause);
} else {
fprintf(stderr, "%s\n", cause);
exit(1);
}
}
evtimer_set(&server_ev_tidy, server_tidy_event, NULL);