Remove leading newline characters from tag messages

Fixes a regression introduced in commit 936295c (Simplify commit and tag
parsing, 2015-03-03).

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Este commit está contenido en:
Lukas Fleischer 2015-03-05 12:58:11 +01:00 cometido por Jason A. Donenfeld
padre ecd6b7230c
commit 4d8ed337cb
Se han modificado 1 ficheros con 3 adiciones y 0 borrados

Ver fichero

@ -216,6 +216,9 @@ struct taginfo *cgit_parse_tag(struct tag *tag)
}
}
while (p && *p == '\n')
p++;
if (p && *p)
ret->msg = xstrdup(p);