git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] blame.c: Properly initialize strbuf after calling textconv_object(), again
@ 2011-11-07 15:53 Sebastian Schuberth
  2011-11-07 16:47 ` Junio C Hamano
  2011-11-07 16:49 ` Jeff King
  0 siblings, 2 replies; 6+ messages in thread
From: Sebastian Schuberth @ 2011-11-07 15:53 UTC (permalink / raw)
  To: git; +Cc: Junio C Hamano

2564aa4 started to initialize buf.alloc, but that should actually be one
more byte than the string length due to the trailing \0.
---
 builtin/blame.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/builtin/blame.c b/builtin/blame.c
index 86c0537..45f0dcc 100644
--- a/builtin/blame.c
+++ b/builtin/blame.c
@@ -2114,7 +2114,7 @@ static struct commit *fake_working_tree_commit(struct diff_options *opt,
 		case S_IFREG:
 			if (DIFF_OPT_TST(opt, ALLOW_TEXTCONV) &&
 			    textconv_object(read_from, mode, null_sha1, &buf.buf, &buf_len)) {
-				buf.alloc = buf_len;
+				buf.alloc = buf_len + 1;
 				buf.len = buf_len;
 			}
 			else if (strbuf_read_file(&buf, read_from, st.st_size) != st.st_size)
-- 
1.7.8.rc0.46.g5ae0f.dirty

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-11-07 17:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-07 15:53 [PATCH] blame.c: Properly initialize strbuf after calling textconv_object(), again Sebastian Schuberth
2011-11-07 16:47 ` Junio C Hamano
2011-11-07 17:31   ` Sebastian Schuberth
2011-11-07 16:49 ` Jeff King
2011-11-07 17:33   ` [PATCHv2] " Sebastian Schuberth
2011-11-07 17:41     ` Jeff King

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).