summaryrefslogtreecommitdiff
path: root/builtin/clone.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-10-17 20:25:18 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-10-17 20:25:18 (GMT)
commit630e05c4f3121aa67dcb1399b62e4c3767d8be55 (patch)
tree84c15c832ae77cd76398bf89b35152c08a8a99a8 /builtin/clone.c
parentc6400bf8d5437e7614c86e6b027761e11ed7a1be (diff)
parent22d3b8de1b625813faec6f3d6ffe66124837b78b (diff)
downloadgit-630e05c4f3121aa67dcb1399b62e4c3767d8be55.zip
git-630e05c4f3121aa67dcb1399b62e4c3767d8be55.tar.gz
git-630e05c4f3121aa67dcb1399b62e4c3767d8be55.tar.bz2
Merge branch 'jk/clone-copy-alternates-fix'
"git clone" of a local repository can be done at the filesystem level, but the codepath did not check errors while copying and adjusting the file that lists alternate object stores. * jk/clone-copy-alternates-fix: clone: detect errors in normalize_path_copy
Diffstat (limited to 'builtin/clone.c')
-rw-r--r--builtin/clone.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/builtin/clone.c b/builtin/clone.c
index 6c80690..6c76a6e 100644
--- a/builtin/clone.c
+++ b/builtin/clone.c
@@ -351,8 +351,11 @@ static void copy_alternates(struct strbuf *src, struct strbuf *dst,
continue;
}
abs_path = mkpathdup("%s/objects/%s", src_repo, line.buf);
- normalize_path_copy(abs_path, abs_path);
- add_to_alternates_file(abs_path);
+ if (!normalize_path_copy(abs_path, abs_path))
+ add_to_alternates_file(abs_path);
+ else
+ warning("skipping invalid relative alternate: %s/%s",
+ src_repo, line.buf);
free(abs_path);
}
strbuf_release(&line);