Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Bugfix: stop if directory already exists
[gitweb.git]
/
strbuf.c
diff --git
a/strbuf.c
b/strbuf.c
index 654330849c3f5d1502d0116c71595b9fa4613186..9d9d8bed915483abbc2ebb340e0881ae4e296bd4 100644
(file)
--- a/
strbuf.c
+++ b/
strbuf.c
@@
-4,7
+4,7
@@
#include "cache.h"
void strbuf_init(struct strbuf *sb) {
- sb->buf =
0
;
+ sb->buf =
NULL
;
sb->eof = sb->alloc = sb->len = 0;
}
@@
-37,6
+37,8
@@
void read_line(struct strbuf *sb, FILE *fp, int term) {
break;
strbuf_add(sb, ch);
}
+ if (ch == EOF && sb->len == 0)
+ sb->eof = 1;
strbuf_end(sb);
}