Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
server-info: skip empty lines.
author
Junio C Hamano
<junkio@cox.net>
Wed, 21 Dec 2005 21:48:47 +0000
(13:48 -0800)
committer
Junio C Hamano
<junkio@cox.net>
Wed, 21 Dec 2005 21:48:47 +0000
(13:48 -0800)
Now we allow an empty line in objects/info/packs file, recognize
that and stop complaining.
Signed-off-by: Junio C Hamano <junkio@cox.net>
server-info.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
50e7b06
)
diff --git
a/server-info.c
b/server-info.c
index 6089765941f36712ec6ee54e5b1492b8c707917b..05bce7da3b4935675465f993c24bb1188439d6d9 100644
(file)
--- a/
server-info.c
+++ b/
server-info.c
@@
-99,7
+99,10
@@
static int read_pack_info_file(const char *infofile)
while (fgets(line, sizeof(line), fp)) {
int len = strlen(line);
if (line[len-1] == '\n')
- line[len-1] = 0;
+ line[--len] = 0;
+
+ if (!len)
+ continue;
switch (line[0]) {
case 'P': /* P name */