projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
915838c
)
strbuf: allow zero-length lines
author
Linus Torvalds
<torvalds@ppc970.osdl.org>
Wed, 18 May 2005 18:33:06 +0000
(11:33 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Wed, 18 May 2005 18:33:06 +0000
(11:33 -0700)
They aren't EOF.
strbuf.c
patch
|
blob
|
history
diff --git
a/strbuf.c
b/strbuf.c
index
d381c1d
..
6543308
100644
(file)
--- a/
strbuf.c
+++ b/
strbuf.c
@@
-37,8
+37,6
@@
void read_line(struct strbuf *sb, FILE *fp, int term) {
break;
strbuf_add(sb, ch);
}
- if (sb->len == 0)
- sb->eof = 1;
strbuf_end(sb);
}