9front - general discussion about 9front
 help / color / mirror / Atom feed
* [9front] [PATCH] git/fs: remove trailing null bytes from parent file
@ 2022-01-06  8:58 Michael Forney
  2022-01-06 16:07 ` ori
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Forney @ 2022-01-06  8:58 UTC (permalink / raw)
  To: 9front


Previously, due to the way the size of buf was calculated, the parent
file had one trailing null byte for each parent.
---
diff 370bfd26ce5ffd9a06a314a20d1691cc6b15b712 2a5737d2ef4ea7920f6d4e5f47487837568b751c
--- a/sys/src/cmd/git/fs.c	Wed Jan  5 22:38:56 2022
+++ b/sys/src/cmd/git/fs.c	Thu Jan  6 00:52:21 2022
@@ -380,8 +380,8 @@
 	char *buf, *p;
 	int i, n;
 
-	n = o->commit->nparent * (40 + 2);
-	buf = emalloc(n);
+	n = o->commit->nparent * (40 + 1);
+	buf = emalloc(n + 1);
 	p = buf;
 	for (i = 0; i < o->commit->nparent; i++)
 		p += sprint(p, "%H\n", o->commit->parent[i]);

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

end of thread, other threads:[~2022-01-06 17:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-06  8:58 [9front] [PATCH] git/fs: remove trailing null bytes from parent file Michael Forney
2022-01-06 16:07 ` ori
2022-01-06 16:49   ` Michael Forney
2022-01-06 16:55     ` ori
2022-01-06 17:02     ` ori

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