expand_paths needs the global environment to be set up, do that first.

pull/2589/head
nicm 2021-02-22 11:42:50 +00:00
parent 5f425ee318
commit 6d8efe9319
1 changed files with 6 additions and 6 deletions

12
tmux.c
View File

@ -357,6 +357,12 @@ main(int argc, char **argv)
if (**argv == '-')
flags = CLIENT_LOGIN;
global_environ = environ_create();
for (var = environ; *var != NULL; var++)
environ_put(global_environ, *var, 0);
if ((cwd = find_cwd()) != NULL)
environ_set(global_environ, "PWD", 0, "%s", cwd);
expand_paths(TMUX_CONF, &cfg_files, &cfg_nfiles, 1);
while ((opt = getopt(argc, argv, "2c:CDdf:lL:NqS:T:uUvV")) != -1) {
@ -451,12 +457,6 @@ main(int argc, char **argv)
flags |= CLIENT_UTF8;
}
global_environ = environ_create();
for (var = environ; *var != NULL; var++)
environ_put(global_environ, *var, 0);
if ((cwd = find_cwd()) != NULL)
environ_set(global_environ, "PWD", 0, "%s", cwd);
global_options = options_create(NULL);
global_s_options = options_create(NULL);
global_w_options = options_create(NULL);