提交 8ac4838a 编写于 作者: J Junio C Hamano

server-info: skip empty lines.

Now we allow an empty line in objects/info/packs file, recognize
that and stop complaining.
Signed-off-by: NJunio C Hamano <junkio@cox.net>
上级 50e7b067
......@@ -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 */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册