Skip to content

Commit

Permalink
clear_ref_array(): rename from free_ref_array()
Browse files Browse the repository at this point in the history
Rename the function since it doesn't actually free the array object
that is passed to it.

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Michael Haggerty authored and Junio C Hamano committed Dec 12, 2011
1 parent 85be1fe commit 7c59511
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions refs.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ static struct ref_entry *current_ref;

static struct ref_array extra_refs;

static void free_ref_array(struct ref_array *array)
static void clear_ref_array(struct ref_array *array)
{
int i;
for (i = 0; i < array->nr; i++)
Expand All @@ -162,14 +162,14 @@ static void free_ref_array(struct ref_array *array)
static void clear_packed_ref_cache(struct ref_cache *refs)
{
if (refs->did_packed)
free_ref_array(&refs->packed);
clear_ref_array(&refs->packed);
refs->did_packed = 0;
}

static void clear_loose_ref_cache(struct ref_cache *refs)
{
if (refs->did_loose)
free_ref_array(&refs->loose);
clear_ref_array(&refs->loose);
refs->did_loose = 0;
}

Expand Down Expand Up @@ -256,7 +256,7 @@ void add_extra_ref(const char *refname, const unsigned char *sha1, int flag)

void clear_extra_refs(void)
{
free_ref_array(&extra_refs);
clear_ref_array(&extra_refs);
}

static struct ref_array *get_packed_refs(const char *submodule)
Expand Down

0 comments on commit 7c59511

Please sign in to comment.