Skip to content

Commit

Permalink
config: fix several access(NULL) calls
Browse files Browse the repository at this point in the history
When $HOME is unset, home_config_paths fails and returns NULL pointers
for user_config and xdg_config. Valgrind complains with Syscall param
access(pathname) points to unaddressable byte(s).

Don't call blindly access() on these variables, but test them for
NULL-ness before.

Signed-off-by: Matthieu Moy <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
moy authored and gitster committed Jul 16, 2012
1 parent 0e8593d commit e3ebc35
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
16 changes: 12 additions & 4 deletions builtin/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -387,12 +387,20 @@ int cmd_config(int argc, const char **argv, const char *prefix)

home_config_paths(&user_config, &xdg_config, "config");

if (access(user_config, R_OK) && !access(xdg_config, R_OK))
if (!user_config)
/*
* It is unknown if HOME/.gitconfig exists, so
* we do not know if we should write to XDG
* location; error out even if XDG_CONFIG_HOME
* is set and points at a sane location.
*/
die("$HOME not set");

if (access(user_config, R_OK) &&
xdg_config && !access(xdg_config, R_OK))
given_config_file = xdg_config;
else if (user_config)
given_config_file = user_config;
else
die("$HOME not set");
given_config_file = user_config;
}
else if (use_system_config)
given_config_file = git_etc_gitconfig();
Expand Down
4 changes: 2 additions & 2 deletions config.c
Original file line number Diff line number Diff line change
Expand Up @@ -940,12 +940,12 @@ int git_config_early(config_fn_t fn, void *data, const char *repo_config)
found += 1;
}

if (!access(xdg_config, R_OK)) {
if (xdg_config && !access(xdg_config, R_OK)) {
ret += git_config_from_file(fn, xdg_config, data);
found += 1;
}

if (!access(user_config, R_OK)) {
if (user_config && !access(user_config, R_OK)) {
ret += git_config_from_file(fn, user_config, data);
found += 1;
}
Expand Down

0 comments on commit e3ebc35

Please sign in to comment.