From: Brandon Williams Date: Tue, 9 May 2017 19:17:58 +0000 (-0700) Subject: pathspec: provide a more descriptive die message X-Git-Tag: v2.14.0-rc0~147^2~5 X-Git-Url: http://git.bitbasher.net/?a=commitdiff_plain;h=2c3b40799fcdb9d2dedc90134e4f3841af08bbe7;p=git.git pathspec: provide a more descriptive die message The current message displayed upon an internal error in 'init_pathspec_item()' isn't very descriptive and doesn't provide much context to where the error occurred. Update the error message to provide more context to where the error occured. Signed-off-by: Brandon Williams Signed-off-by: Junio C Hamano --- diff --git a/pathspec.c b/pathspec.c index 50f76fff45..904cfb7393 100644 --- a/pathspec.c +++ b/pathspec.c @@ -555,7 +555,7 @@ static void init_pathspec_item(struct pathspec_item *item, unsigned flags, * would trigger that. */ die_inside_submodule_path(item); - die ("BUG: item->nowildcard_len > item->len || item->prefix > item->len)"); + die ("BUG: error initializing pathspec_item"); } }