mirror of
https://github.com/tmux/tmux.git
synced 2024-12-13 18:38:48 +00:00
Merge branch 'obsd-master'
This commit is contained in:
commit
5af2f68a2c
2
cfg.c
2
cfg.c
@ -97,7 +97,7 @@ load_cfg(const char *path, struct cmd_q *cmdq, char **cause)
|
|||||||
}
|
}
|
||||||
|
|
||||||
found = 0;
|
found = 0;
|
||||||
while ((buf = fparseln(f, NULL, &line, delim, 0))) {
|
while ((buf = fparseln(f, NULL, &line, delim, 0)) != NULL) {
|
||||||
log_debug("%s: %s", path, buf);
|
log_debug("%s: %s", path, buf);
|
||||||
|
|
||||||
/* Skip empty lines. */
|
/* Skip empty lines. */
|
||||||
|
4
client.c
4
client.c
@ -264,6 +264,10 @@ client_main(struct event_base *base, int argc, char **argv, int flags)
|
|||||||
}
|
}
|
||||||
return (1);
|
return (1);
|
||||||
}
|
}
|
||||||
|
options_free(&global_options);
|
||||||
|
options_free(&global_s_options);
|
||||||
|
options_free(&global_w_options);
|
||||||
|
environ_free(&global_environ);
|
||||||
|
|
||||||
/* Set process title, log and signals now this is the client. */
|
/* Set process title, log and signals now this is the client. */
|
||||||
#ifdef HAVE_SETPROCTITLE
|
#ifdef HAVE_SETPROCTITLE
|
||||||
|
Loading…
Reference in New Issue
Block a user