diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-09-14 23:48:27 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-09-14 23:48:27 +0200 |
commit | 2b621c1a3aac23b8258885a9b4658d9ac993742f (patch) | |
tree | 83d9602eccfc733a550812ce492d4caa0af625c8 /http.c | |
parent | web--browse: fix Mac OS X GUI detection for 10.6 (diff) | |
parent | Merge branch 'rc/maint-http-no-head-pack-check' into maint (diff) | |
download | git-2b621c1a3aac23b8258885a9b4658d9ac993742f.tar.xz git-2b621c1a3aac23b8258885a9b4658d9ac993742f.zip |
Merge branch 'maint'
* maint:
http.c: avoid freeing an uninitialized pointer
Diffstat (limited to 'http.c')
-rw-r--r-- | http.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -866,7 +866,7 @@ static int fetch_pack_index(unsigned char *sha1, const char *base_url) int ret = 0; char *hex = xstrdup(sha1_to_hex(sha1)); char *filename; - char *url; + char *url = NULL; struct strbuf buf = STRBUF_INIT; if (has_pack_index(sha1)) { |