diff options
author | Junio C Hamano <junkio@cox.net> | 2005-12-07 17:48:53 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-07 17:48:53 -0800 |
commit | 64224caf888253601b7285ab242f4a12779894b9 (patch) | |
tree | 168de787ba3f4847c45353d386b069d3da6872d7 /refs.c | |
parent | 361c06d8f5777c1037ad5c0e4d58f44cda4a5044 (diff) | |
download | git-64224caf888253601b7285ab242f4a12779894b9.tar.gz git-64224caf888253601b7285ab242f4a12779894b9.tar.xz |
refs.c: make sure leading directories exist before writing a ref.
Otherwise cloning a repository with hierarchical branch/tag
over http would fail.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'refs.c')
-rw-r--r-- | refs.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -292,6 +292,8 @@ int write_ref_sha1(const char *ref, int fd, const unsigned char *sha1) return -1; filename = ref_file_name(ref); lock_filename = ref_lock_file_name(ref); + if (safe_create_leading_directories(filename)) + die("unable to create leading directory for %s", filename); retval = write_ref_file(filename, lock_filename, fd, sha1); free(filename); free(lock_filename); @@ -358,6 +360,8 @@ int write_ref_sha1_unlocked(const char *ref, const unsigned char *sha1) return -1; filename = ref_file_name(ref); lock_filename = ref_lock_file_name(ref); + if (safe_create_leading_directories(filename)) + die("unable to create leading directory for %s", filename); fd = open(lock_filename, O_WRONLY | O_CREAT | O_EXCL, 0666); if (fd < 0) { error("Writing %s", lock_filename); |