diff options
author | Tommi Virtanen <tv@inoi.fi> | 2005-11-30 17:37:10 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-30 10:51:24 -0800 |
commit | 0738fc2192109f946c033b3b003cb10aace9554e (patch) | |
tree | da145ce785c5d671d0bbf85d8ca6f34f41a322f7 | |
parent | git-diff: do not turn off -p/-M with any diff options. (diff) | |
download | tgif-0738fc2192109f946c033b3b003cb10aace9554e.tar.xz |
Do not attempt to access literal dirname "GIT_OBJECT_DIRECTORY".
Dereference the environment variable before using it.
Signed-off-by: Tommi Virtanen <tv@inoi.fi>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -116,7 +116,7 @@ static const char *setup_git_directory_1(void) if (validate_symref(path)) goto bad_dir_environ; if (getenv(DB_ENVIRONMENT)) { - if (access(DB_ENVIRONMENT, X_OK)) + if (access(getenv(DB_ENVIRONMENT), X_OK)) goto bad_dir_environ; } else { |