Thomas Rast <trast@xxxxxxxxxxxxxxx> writes: > Meh, this stops before the git-status because merge signals a > conflict. However, the following really crashes. Promise. Thanks. wt-status.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/wt-status.c b/wt-status.c index f73bf47..6370fe2 100644 --- a/wt-status.c +++ b/wt-status.c @@ -236,7 +236,7 @@ static int unmerged_mask(const char *path) mask = 0; pos = -pos-1; - while (pos <= active_nr) { + while (pos < active_nr) { ce = active_cache[pos++]; if (strcmp(ce->name, path)) break; -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html