1
0
mirror of https://github.com/git/git.git synced 2024-09-25 13:21:31 +02:00

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>
This commit is contained in:
Tommi Virtanen 2005-11-30 17:37:10 +02:00 committed by Junio C Hamano
parent 5620518095
commit 0738fc2192

View File

@ -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 {