http.c: avoid freeing an uninitialized pointer
commitb2025146d0718d953036352f8435cfa392b1d799
authorJunio C Hamano <gitster@pobox.com>
Mon, 14 Sep 2009 21:48:15 +0000 (14 14:48 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 14 Sep 2009 21:48:15 +0000 (14 14:48 -0700)
tree18bd3fc20b0565f94bce0a3e94b6a83b26b88627
parent59b8d38f6e4f19b93c5dc4493ab11706acd101b5
http.c: avoid freeing an uninitialized pointer

An earlier 59b8d38 (http.c: remove verification of remote packs) left
the variable "url" uninitialized; "goto cleanup" codepath can free it
which is not very nice.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
http.c