Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
commit: add short-circuit to paint_down_to_common()
[gitweb.git]
/
alloc.c
diff --git
a/alloc.c
b/alloc.c
index 12afadfacdd6094912a6e18a217a9aa6318b47b2..e8ab14f4a12bc65eb32152192af1faf719e3423c 100644
(file)
--- a/
alloc.c
+++ b/
alloc.c
@@
-93,6
+93,8
@@
void *alloc_commit_node(void)
struct commit *c = alloc_node(&commit_state, sizeof(struct commit));
c->object.type = OBJ_COMMIT;
c->index = alloc_commit_index();
+ c->graph_pos = COMMIT_NOT_FROM_GRAPH;
+ c->generation = GENERATION_NUMBER_INFINITY;
return c;
}