projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11e7d5c
)
Fix missing '\n' at end of git-cat-file -t output.
author
Linus Torvalds
<torvalds@ppc970.osdl.org>
Mon, 2 May 2005 02:40:39 +0000
(19:40 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Mon, 2 May 2005 02:40:39 +0000
(19:40 -0700)
cat-file.c
patch
|
blob
|
history
diff --git
a/cat-file.c
b/cat-file.c
index
6bbb0ca
..
6ff9d55
100644
(file)
--- a/
cat-file.c
+++ b/
cat-file.c
@@
-21,6
+21,7
@@
int main(int argc, char **argv)
buf = type;
size = strlen(type);
type[size] = '\n';
+ size++;
}
} else {
buf = read_object_with_reference(sha1, argv[1], &size, NULL);