From: Martin Stenberg <martin@gnutiken.se>
To: git@vger.kernel.org
Cc: Linus Torvalds <torvalds@osdl.org>
Subject: [PATCH] fix incorrect line number report for bad gitconfig
Date: Fri, 9 Mar 2012 23:30:14 +0100 [thread overview]
Message-ID: <20120309223014.GA6380@gnutiken.se> (raw)
[-- Attachment #1: Type: text/plain, Size: 1795 bytes --]
From c88f00e06cb877f9d944fdec480f53a7a42dd990 Mon Sep 17 00:00:00 2001
From: Martin Stenberg <martin@gnutiken.se>
Date: Fri, 9 Mar 2012 22:57:54 +0100
Subject: [PATCH] fix incorrect line number report for bad gitconfig
A .gitconfig section with a missing "]" reports the next line as beeing bad,
same goes to a value with a missing end quote.
This happens because the error is not detected until the end of the line, when
line number is already increased. Fix this issue by decreasing line number by
one for these cases.
Signed-off-by: Martin Stenberg <martin@gnutiken.se>
---
config.c | 16 ++++++++++++----
1 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/config.c b/config.c
index ad03908..8d96ba1 100644
--- a/config.c
+++ b/config.c
@@ -196,8 +196,10 @@ static char *parse_value(void)
for (;;) {
int c = get_next_char();
if (c == '\n') {
- if (quote)
+ if (quote) {
+ cf->linenr--;
return NULL;
+ }
return cf->value.buf;
}
if (comment)
@@ -286,8 +288,10 @@ static int get_value(config_fn_t fn, void *data, char *name, unsigned int len)
static int get_extended_base_var(char *name, int baselen, int c)
{
do {
- if (c == '\n')
+ if (c == '\n') {
+ cf->linenr--;
return -1;
+ }
c = get_next_char();
} while (isspace(c));
@@ -298,14 +302,18 @@ static int get_extended_base_var(char *name, int baselen, int c)
for (;;) {
int c = get_next_char();
- if (c == '\n')
+ if (c == '\n') {
+ cf->linenr--;
return -1;
+ }
if (c == '"')
break;
if (c == '\\') {
c = get_next_char();
- if (c == '\n')
+ if (c == '\n') {
+ cf->linenr--;
return -1;
+ }
}
name[baselen++] = c;
if (baselen > MAXNAME / 2)
--
1.7.9.1
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
next reply other threads:[~2012-03-09 22:40 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-09 22:30 Martin Stenberg [this message]
2012-03-09 22:58 ` [PATCH] fix incorrect line number report for bad gitconfig Junio C Hamano
2012-03-12 5:55 ` Junio C Hamano
2012-03-12 12:01 ` Martin Stenberg
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=20120309223014.GA6380@gnutiken.se \
--to=martin@gnutiken.se \
--cc=git@vger.kernel.org \
--cc=torvalds@osdl.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).