projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5620518
)
Do not attempt to access literal dirname "GIT_OBJECT_DIRECTORY".
author
Tommi Virtanen
<tv@inoi.fi>
Wed, 30 Nov 2005 15:37:10 +0000
(17:37 +0200)
committer
Junio C Hamano
<junkio@cox.net>
Wed, 30 Nov 2005 18:51:24 +0000
(10:51 -0800)
Dereference the environment variable before using it.
Signed-off-by: Tommi Virtanen <tv@inoi.fi>
Signed-off-by: Junio C Hamano <junkio@cox.net>
setup.c
patch
|
blob
|
history
diff --git
a/setup.c
b/setup.c
index
cc44a72
..
3286a56
100644
(file)
--- a/
setup.c
+++ b/
setup.c
@@
-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 {