Signed-off-by: Alex Riesen <raa.lkml@xxxxxxxxx> --- git.c | 4 ++-- setup.c | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/git.c b/git.c index 9e5813c..940a498 100644 --- a/git.c +++ b/git.c @@ -195,8 +195,8 @@ static int handle_alias(int *argcp, const char ***argv) ret = 1; } - if (subdir) - chdir(subdir); + if (subdir && chdir(subdir)) + die("Cannot change to %s: %s", subdir, strerror(errno)); errno = saved_errno; diff --git a/setup.c b/setup.c index 78a8041..833ced2 100644 --- a/setup.c +++ b/setup.c @@ -470,7 +470,8 @@ const char *setup_git_directory_gently(int *nongit_ok) } die("Not a git repository"); } - chdir(".."); + if (chdir("..")) + die("Cannot change to %s/..: %s", cwd, strerror(errno)); } inside_git_dir = 0; -- 1.6.1.rc1.29.gb140 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html