bundle transport: fix an alloc_ref() call
authorJunio C Hamano <gitster@pobox.com>
Fri, 28 Sep 2007 08:46:13 +0000 (01:46 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sun, 30 Sep 2007 06:54:37 +0000 (23:54 -0700)
Currently alloc_ref() expects the length of the refname plus 1
as its parameter, prepares that much space and returns a "ref"
structure for the caller to fill the refname. One caller in
transport.c::get_refs_from_bundle() however allocated one byte
less.

It may be a good idea to change the calling convention to give
alloc_ref() the length of the refname, but that clean-up can be
done in a separate patch. This patch only fixes the bug and
makes all callers consistent.

There was also one overallocation in connect.c, which would not
hurt but was wasteful. This patch fixes it as well.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
No differences found