1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-10 18:06:14 +02:00

[PATCH] Fix git-init-db creating crap directories.

The base target directory for the templates copying was initialized
to git_dir, but git_dir[len] is not zero but / at the time we do the
initialization. This is not what we want for our target directory string
since we pass it to mkdir(), so make it zero-terminated manually.

Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Petr Baudis 2005-09-20 02:19:50 +02:00 committed by Junio C Hamano
parent bfb73b2ebc
commit 1f961c196c

View File

@ -154,6 +154,7 @@ static void copy_templates(const char *git_dir, int len, char *template_dir)
}
memcpy(path, git_dir, len);
path[len] = 0;
copy_templates_1(path, len,
template_path, template_len,
dir);