projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6474510
)
Don't add parents to the commit list if we have already
author
Linus Torvalds
<torvalds@ppc970.osdl.org>
Sun, 24 Apr 2005 02:21:28 +0000
(19:21 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Sun, 24 Apr 2005 02:21:28 +0000
(19:21 -0700)
seen them.
Otherwise any merges will make the parent list explode.
commit.c
patch
|
blob
|
history
diff --git
a/commit.c
b/commit.c
index
911f643
..
0243e77
100644
(file)
--- a/
commit.c
+++ b/
commit.c
@@
-124,8
+124,11
@@
struct commit *pop_most_recent_commit(struct commit_list **list)
free(old);
while (parents) {
- parse_commit(parents->item);
- insert_by_date(list, parents->item);
+ struct commit *commit = parents->item;
+ if (!commit->object.parsed) {
+ parse_commit(commit);
+ insert_by_date(list, commit);
+ }
parents = parents->next;
}
return ret;