|
|
@ -220,7 +220,7 @@ struct taginfo *cgit_parse_tag(struct tag *tag) |
|
|
|
|
|
|
|
|
|
|
|
p = data; |
|
|
|
p = data; |
|
|
|
|
|
|
|
|
|
|
|
while (p) { |
|
|
|
while (p && *p) { |
|
|
|
if (*p == '\n') |
|
|
|
if (*p == '\n') |
|
|
|
break; |
|
|
|
break; |
|
|
|
|
|
|
|
|
|
|
@ -238,7 +238,7 @@ struct taginfo *cgit_parse_tag(struct tag *tag) |
|
|
|
|
|
|
|
|
|
|
|
while (p && (*p == '\n')) |
|
|
|
while (p && (*p == '\n')) |
|
|
|
p = strchr(p, '\n') + 1; |
|
|
|
p = strchr(p, '\n') + 1; |
|
|
|
if (p) |
|
|
|
if (p && *p) |
|
|
|
ret->msg = xstrdup(p); |
|
|
|
ret->msg = xstrdup(p); |
|
|
|
free(data); |
|
|
|
free(data); |
|
|
|
return ret; |
|
|
|
return ret; |
|
|
|