Skip to content

Commit

Permalink
add_ref_decoration(): rewrite to take an object_id argument
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Michael Haggerty authored and Junio C Hamano committed May 25, 2015
1 parent 5f9cf5a commit f124b73
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions log-tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ const struct name_decoration *get_name_decoration(const struct object *obj)
return lookup_decoration(&name_decoration, obj);
}

static int add_ref_decoration(const char *refname, const unsigned char *sha1, int flags, void *cb_data)
static int add_ref_decoration(const char *refname, const struct object_id *oid,
int flags, void *cb_data)
{
struct object *obj;
enum decoration_type type = DECORATION_NONE;
Expand All @@ -110,7 +111,7 @@ static int add_ref_decoration(const char *refname, const unsigned char *sha1, in
return 0;
}

obj = parse_object(sha1);
obj = parse_object(oid->hash);
if (!obj)
return 0;

Expand Down Expand Up @@ -149,13 +150,11 @@ static int add_graft_decoration(const struct commit_graft *graft, void *cb_data)
void load_ref_decorations(int flags)
{
if (!decoration_loaded) {
struct each_ref_fn_sha1_adapter wrapped_add_ref_decoration =
{add_ref_decoration, NULL};

decoration_loaded = 1;
decoration_flags = flags;
for_each_ref(each_ref_fn_adapter, &wrapped_add_ref_decoration);
head_ref(each_ref_fn_adapter, &wrapped_add_ref_decoration);
for_each_ref(add_ref_decoration, NULL);
head_ref(add_ref_decoration, NULL);
for_each_commit_graft(add_graft_decoration, NULL);
}
}
Expand Down

0 comments on commit f124b73

Please sign in to comment.