Skip to content

Commit e2e1425

Browse files
dschogitster
authored andcommitted
config: report correct line number upon error
When get_value() parses a key/value pair, it is possible that the line number is decreased (because the \n has been consumed already) before the key/value pair is passed to the callback function, to allow for the correct line to be attributed in case of an error. However, when git_parse_source() asks get_value() to parse the key/value pair, the error reporting is performed *after* get_value() returns. Which means that we have to be careful not to increase the line number in get_value() after the callback function returned an error. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Reviewed-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 69743f9 commit e2e1425

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

config.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,8 @@ static int get_value(config_fn_t fn, void *data, struct strbuf *name)
588588
*/
589589
cf->linenr--;
590590
ret = fn(name->buf, value, data);
591-
cf->linenr++;
591+
if (ret >= 0)
592+
cf->linenr++;
592593
return ret;
593594
}
594595

t/t1300-repo-config.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,12 @@ test_expect_success 'invalid unit' '
703703
test_i18ngrep "bad numeric config value .1auto. for .aninvalid.unit. in file .git/config: invalid unit" actual
704704
'
705705

706+
test_expect_success 'line number is reported correctly' '
707+
printf "[bool]\n\tvar\n" >invalid &&
708+
test_must_fail git config -f invalid --path bool.var 2>actual &&
709+
test_i18ngrep "line 2" actual
710+
'
711+
706712
test_expect_success 'invalid stdin config' '
707713
echo "[broken" | test_must_fail git config --list --file - >output 2>&1 &&
708714
test_i18ngrep "bad config line 1 in standard input" output

0 commit comments

Comments
 (0)