There's still a problem with git am on the current next branch (which
includes the recent "mailinfo: re-fix MIME multipart boundary parsing"
patch):
$ wcat -q
'http://article.gmane.org/gmane.comp.version-control.git/91305/raw' | git am
fatal: `pos + len' is too far after the end of the buffer
$
It seems to be because of the (unusual?) way the patch uses MIME. Just
wanted to post this so it doesn't get lost.
-- Lea
From: Jeff King <hidden> Date: 2016-06-15 22:45:11
On Tue, Aug 19, 2008 at 05:50:14PM +0200, Lea Wiemann wrote:
$ wcat -q
'http://article.gmane.org/gmane.comp.version-control.git/91305/raw' | git am
fatal: `pos + len' is too far after the end of the buffer
$
It seems to be because of the (unusual?) way the patch uses MIME. Just
wanted to post this so it doesn't get lost.
It's the From header actually. The patch below should fix it (though it
sure makes that line of code ugly -- improvements are welcome).
-- >8 --
mailinfo: avoid violating strbuf assertion
In handle_from, we calculate the end boundary of a section
to remove from a strbuf using strcspn like this:
el = strcspn(buf, set_of_end_boundaries);
strbuf_remove(&sb, start, el + 1);
This works fine if "el" is the offset of the boundary
character, meaning we remove that character. But if the end
boundary didn't match (that is, we hit the end of the string
as the boundary instead) then we want just "el".
This manifested itself when we got a 'From' header that had
just an email address with nothing else in it (the end of
the string was the end of the address, rather than, e.g., a
trailing '>' character).
---
builtin-mailinfo.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
@@ -107,7 +107,7 @@ static void handle_from(const struct strbuf *from)el=strcspn(at," \n\t\r\v\f>");strbuf_reset(&email);strbuf_add(&email,at,el);-strbuf_remove(&f,at-f.buf,el+1);+strbuf_remove(&f,at-f.buf,el+(at[el]?1:0));/* The remainder is name. It could be "John Doe <john.doe@xz>"*or"john.doe@xz (John Doe)",butwehaveremovedthe