mirror of
https://github.com/git/git.git
synced 2024-11-05 16:52:59 +01:00
[PATCH] fetch.c: Remove some duplicated code in process()
It does not matter if we call prefetch() or set the TO_SCAN flag before or after adding the object to process_queue. However, doing it before object_list_insert() allows us to kill 3 lines of duplicated code. Signed-off-by: Sergey Vlasov <vsu@altlinux.ru> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
c5c0f452f5
commit
5de0bfffbc
1 changed files with 5 additions and 8 deletions
13
fetch.c
13
fetch.c
|
@ -138,18 +138,15 @@ static int process(struct object *obj)
|
|||
/* We already have it, so we should scan it now. */
|
||||
if (obj->flags & TO_SCAN)
|
||||
return 0;
|
||||
object_list_insert(obj, process_queue_end);
|
||||
process_queue_end = &(*process_queue_end)->next;
|
||||
obj->flags |= TO_SCAN;
|
||||
return 0;
|
||||
} else {
|
||||
if (obj->flags & COMPLETE)
|
||||
return 0;
|
||||
prefetch(obj->sha1);
|
||||
}
|
||||
if (obj->flags & COMPLETE)
|
||||
return 0;
|
||||
|
||||
object_list_insert(obj, process_queue_end);
|
||||
process_queue_end = &(*process_queue_end)->next;
|
||||
|
||||
prefetch(obj->sha1);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue