refs: do not create ref_entry when searching
commite1980c9d23c22ecfbcadbe91d304ba778b84b457
authorJunio C Hamano <gitster@pobox.com>
Tue, 22 May 2012 21:03:29 +0000 (22 14:03 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 22 May 2012 21:28:03 +0000 (22 14:28 -0700)
treec74e41cc363541253732ad7d62ba511a3818d176
parentdd02e72852280d73bfd845703476b230475b2776
refs: do not create ref_entry when searching

The search_ref_dir() function is about looking up an existing ref_entry in
a sorted array of ref_entry stored in dir->entries, but it still allocates
a new ref_entry and frees it before returning.  This is only because the
call to bsearch(3) was coded in a suboptimal way. Unlike the comparison
function given to qsort(3), the first parameter to its comparison function
does not need to point at an object that is shaped like an element in the
array.

Introduce a new comparison function that takes a counted string as the key
and an element in an array of ref_entry and give it to bsearch(), so that
we do not have to allocate a new ref_entry that we will never return to
the caller anyway.

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