From: Don Zickus <dzickus@redhat.com>
To: Junio C Hamano <gitster@pobox.com>
Cc: "Linus Torvalds" <torvalds@linux-foundation.org>,
"Git Mailing List" <git@vger.kernel.org>,
"Lukas Sandström" <lukass@etek.chalmers.se>
Subject: Re: 'git mailinfo' whitespace bug
Date: Mon, 22 Feb 2010 10:13:44 -0500 [thread overview]
Message-ID: <20100222151344.GK3062@redhat.com> (raw)
In-Reply-To: <7vzl343160.fsf@alter.siamese.dyndns.org>
On Fri, Feb 19, 2010 at 09:51:19PM -0800, Junio C Hamano wrote:
> Linus Torvalds <torvalds@linux-foundation.org> writes:
>
> > I bisected it, and this bug was introduced almost two years ago. In commit
> > 3b6121f69b2 ("git-mailinfo: use strbuf's instead of fixed buffers"), to be
> > exact. I'm pretty sure the bug is that handle_commit_msg() was changed to
> > use 'strbuf_ltrim()' for the 'still_looking' case.
> >
> > Before commit 3b6121f69b2, it would create a new variable that had the
> > trimmed results ("char *cp = line;"), after that commit it would just trim
> > the line itself. Which is correct for the case of it being a header, but
> > if it's the first non-header line, it's wrong.
>
> True; trimming the body is obviously wrong.
>
> But when is it correct to ltrim a header line? It means we are going to
> accept a header (or header-looking line in body) that is indented. I
> don't know why 87ab799 (builtin-mailinfo.c 2007-03-12) was coded that way.
In regards to 87ab799, I just deleted and pasted it from the function
handle_inbody_header (which you can see from that commit). The original
code for those lines came from ae448e3854d8b6e7e37aa88fa3917f5dd97f3210.
Perhaps I misused it when I moved it.
Your patch belows seems to make sense for what its worth.
Cheers,
Don
>
>
> builtin-mailinfo.c | 3 +--
> t/t5100/msg0015 | 2 +-
> 2 files changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/builtin-mailinfo.c b/builtin-mailinfo.c
> index a50ac22..ce2ef6b 100644
> --- a/builtin-mailinfo.c
> +++ b/builtin-mailinfo.c
> @@ -779,8 +779,7 @@ static int handle_commit_msg(struct strbuf *line)
> return 0;
>
> if (still_looking) {
> - strbuf_ltrim(line);
> - if (!line->len)
> + if (!line->len || (line->len == 1 && line->buf[0] == '\n'))
> return 0;
> }
>
> diff --git a/t/t5100/msg0015 b/t/t5100/msg0015
> index 9577238..4abb3d5 100644
> --- a/t/t5100/msg0015
> +++ b/t/t5100/msg0015
> @@ -1,2 +1,2 @@
> -- a list
> + - a list
> - of stuff
next prev parent reply other threads:[~2010-02-22 15:20 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-18 18:05 'git mailinfo' whitespace bug Linus Torvalds
2010-02-19 11:54 ` [PATCH] mailinfo: don't trim whitespace in the commit message Lukas Sandström
2010-02-20 5:51 ` 'git mailinfo' whitespace bug Junio C Hamano
2010-02-22 15:13 ` Don Zickus [this message]
2010-02-22 19:57 ` Junio C Hamano
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=20100222151344.GK3062@redhat.com \
--to=dzickus@redhat.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=lukass@etek.chalmers.se \
--cc=torvalds@linux-foundation.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).