]> git.ipfire.org Git - thirdparty/git.git/commit - http.c
http-fetch: Use temporary files for pack-*.idx until verified
authorShawn O. Pearce <spearce@spearce.org>
Mon, 19 Apr 2010 14:23:10 +0000 (07:23 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 20 Apr 2010 00:56:29 +0000 (17:56 -0700)
commit750ef42516bb343a7755f003720e43cd8dd64c3e
tree8470c3e9028f9ef09e940e127f0c0ffef14f0c12
parentfe72d420ab4dda593dddece7b907ee7868ced127
http-fetch: Use temporary files for pack-*.idx until verified

Verify that a downloaded pack-*.idx file is consistent and valid
as an index file before we rename it into its final destination.
This prevents a corrupt index file from later being treated as a
usable file, confusing readers.

Check that we do not have the pack index file before invoking
fetch_pack_index(); that way, we can do without the has_pack_index()
check in fetch_pack_index().

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
http.c
t/t5550-http-fetch.sh