提交 c5c0f452 编写于 作者: S Sergey Vlasov 提交者: Junio C Hamano

[PATCH] fetch.c: Remove redundant TO_FETCH flag

The TO_FETCH flag also became redundant after adding the SEEN flag -
it was set and checked in process() to prevent adding the same object
to process_queue multiple times, but now SEEN guards against this.
Signed-off-by: NSergey Vlasov <vsu@altlinux.ru>
Signed-off-by: NJunio C Hamano <junkio@cox.net>
上级 125beb1e
......@@ -55,7 +55,6 @@ static int process_tree(struct tree *tree)
}
#define COMPLETE 1U
#define TO_FETCH 2U
#define TO_SCAN 4U
#define SEEN 16U
......@@ -144,11 +143,10 @@ static int process(struct object *obj)
obj->flags |= TO_SCAN;
return 0;
}
if (obj->flags & (COMPLETE | TO_FETCH))
if (obj->flags & COMPLETE)
return 0;
object_list_insert(obj, process_queue_end);
process_queue_end = &(*process_queue_end)->next;
obj->flags |= TO_FETCH;
prefetch(obj->sha1);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册