[PATCH 1/2] Remove leading newline characters from tag messages

Lukas Fleischer cgit at cryptocrack.de
Thu Mar 5 12:58:11 CET 2015


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

Signed-off-by: Lukas Fleischer <cgit at cryptocrack.de>
---
 parsing.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/parsing.c b/parsing.c
index 0db181b..dcaf2b3 100644
--- a/parsing.c
+++ b/parsing.c
@@ -216,6 +216,9 @@ struct taginfo *cgit_parse_tag(struct tag *tag)
 		}
 	}
 
+	while (p && *p == '\n')
+		p++;
+
 	if (p && *p)
 		ret->msg = xstrdup(p);
 
-- 
2.3.1



More information about the CGit mailing list