commit | 422b4a0e03658d0933a7abc149f175735ea9c4b5 | [log] [tgz] |
---|---|---|
author | Junio C Hamano <junkio@cox.net> | Wed Oct 04 21:37:15 2006 -0700 |
committer | Junio C Hamano <junkio@cox.net> | Wed Oct 04 21:37:15 2006 -0700 |
tree | b670900cd46d5198d6b1246950c2312d02f8f115 | |
parent | 03a182107fdb36170a72b8a3d94de2b52e3f6668 [diff] [blame] |
pack-refs: call fflush before fsync. Signed-off-by: Junio C Hamano <junkio@cox.net>
diff --git a/builtin-pack-refs.c b/builtin-pack-refs.c index ede4743..23d0d07 100644 --- a/builtin-pack-refs.c +++ b/builtin-pack-refs.c
@@ -89,6 +89,7 @@ die("unable to create ref-pack file structure (%s)", strerror(errno)); for_each_ref(handle_one_ref, &cbdata); + fflush(cbdata.refs_file); fsync(fd); fclose(cbdata.refs_file); if (commit_lock_file(&packed) < 0)