From: Junio C Hamano <gitster@pobox.com>
To: "Avery Pennarun" <apenwarr@gmail.com>
Cc: "Git ML" <git@vger.kernel.org>
Subject: Re: [bug] Segfault in git rev-list --first-parent --bisect
Date: Fri, 22 Aug 2008 22:20:13 -0700 [thread overview]
Message-ID: <7v7ia848aa.fsf@gitster.siamese.dyndns.org> (raw)
In-Reply-To: <32541b130808222020v146e015dm8a98a005ad3e76a7@mail.gmail.com> (Avery Pennarun's message of "Fri, 22 Aug 2008 23:20:31 -0400")
"Avery Pennarun" <apenwarr@gmail.com> writes:
> $ git rev-list --first-parent --bisect 5109c91 ^d798a2bfe094
> Segmentation fault
Totally untested, usefulness fairly unknown.
builtin-rev-list.c | 18 ++++++++++++++----
1 files changed, 14 insertions(+), 4 deletions(-)
diff --git c/builtin-rev-list.c w/builtin-rev-list.c
index 893762c..aab198f 100644
--- c/builtin-rev-list.c
+++ w/builtin-rev-list.c
@@ -530,19 +530,23 @@ static struct commit_list *do_find_bisection(struct commit_list *list,
return best_bisection_sorted(list, nr);
}
+#define BISECT_FIND_ALL 01
+#define BISECT_FIRST_PARENT_ONLY 02
static struct commit_list *find_bisection(struct commit_list *list,
int *reaches, int *all,
- int find_all)
+ int flag)
{
int nr, on_list;
struct commit_list *p, *best, *next, *last;
int *weights;
+ int find_all = flag & BISECT_FIND_ALL;
+ int first_parent_only = flag & BISECT_FIRST_PARENT_ONLY;
show_list("bisection 2 entry", 0, 0, list);
/*
* Count the number of total and tree-changing items on the
- * list, while reversing the list.
+ * list, while reversing the list and removing.
*/
for (nr = on_list = 0, last = NULL, p = list;
p;
@@ -557,6 +561,8 @@ static struct commit_list *find_bisection(struct commit_list *list,
if (!(flags & TREESAME))
nr++;
on_list++;
+ if (first_parent_only && p->item->parents)
+ p->item->parents->next = NULL;
}
list = last;
show_list("bisection 2 sorted", 0, nr, list);
@@ -656,9 +662,13 @@ int cmd_rev_list(int argc, const char **argv, const char *prefix)
if (bisect_list) {
int reaches = reaches, all = all;
+ int flag = 0;
+ if (bisect_find_all)
+ flag |= BISECT_FIND_ALL;
+ if (revs.first_parent_only)
+ flag |= BISECT_FIRST_PARENT_ONLY;
+ revs.commits = find_bisection(revs.commits, &reaches, &all, flag);
- revs.commits = find_bisection(revs.commits, &reaches, &all,
- bisect_find_all);
if (bisect_show_vars) {
int cnt;
char hex[41];
next prev parent reply other threads:[~2008-08-23 5:21 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-23 3:20 [bug] Segfault in git rev-list --first-parent --bisect Avery Pennarun
2008-08-23 4:51 ` Junio C Hamano
2008-08-23 5:20 ` Junio C Hamano [this message]
2008-08-23 5:31 ` Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7v7ia848aa.fsf@gitster.siamese.dyndns.org \
--to=gitster@pobox.com \
--cc=apenwarr@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).