Commit 436674f introduced a grep_text utility function which takes a NULL-terminated list; the callsite in blame_grep forgot to put in a NULL, leading to segmentation faults. Signed-off-by: Jeff King <peff@xxxxxxxx> --- tig.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/tig.c b/tig.c index 5acb398..1de732c 100644 --- a/tig.c +++ b/tig.c @@ -4595,6 +4595,7 @@ blame_grep(struct view *view, struct line *line) commit ? commit->id : "", commit && opt_author ? commit->author : "", commit && opt_date ? mkdate(&commit->time) : "", + NULL }; return grep_text(view, text); -- 1.6.2.rc1.242.g8d690 -- 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