diff options
author | René Scharfe <l.s.r@web.de> | 2015-10-24 18:21:31 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-10-26 14:06:46 -0700 |
commit | e510ab898865fdaf131e9bc9fd6ab6b7c4a94c9b (patch) | |
tree | e189dbe7cc56b89b1d8c2e1d884db8d1da6e4a8b /shallow.c | |
parent | 24358560c3c0ab51c9ef8178d99f46711716f6c0 (diff) | |
download | git-e510ab898865fdaf131e9bc9fd6ab6b7c4a94c9b.tar.gz |
use pop_commit() for consuming the first entry of a struct commit_listrs/pop-commit
Instead of open-coding the function pop_commit() just call it. This
makes the intent clearer and reduces code size.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'shallow.c')
-rw-r--r-- | shallow.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -422,13 +422,9 @@ static void paint_down(struct paint_info *info, const unsigned char *sha1, commit_list_insert(c, &head); while (head) { struct commit_list *p; - struct commit *c = head->item; + struct commit *c = pop_commit(&head); uint32_t **refs = ref_bitmap_at(&info->ref_bitmap, c); - p = head; - head = head->next; - free(p); - /* XXX check "UNINTERESTING" from pack bitmaps if available */ if (c->object.flags & (SEEN | UNINTERESTING)) continue; |