diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-09-14 14:48:20 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-09-14 14:48:20 -0700 |
commit | 4197ce3c6d943759e1088a0298b64571b4bc725a (patch) | |
tree | 3ab660ad62dd7c8c8bd637aa9bc1c2843a8439fe /http.c | |
parent | 7fb6bcff2dece2ff9fbc5ebfe526d9b2a7e764c4 (diff) | |
parent | b2025146d0718d953036352f8435cfa392b1d799 (diff) | |
download | git-4197ce3c6d943759e1088a0298b64571b4bc725a.tar.gz |
Merge branch 'rc/maint-http-no-head-pack-check' into maint
* rc/maint-http-no-head-pack-check:
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)) { |