From: Michael Haggerty <mhagger@xxxxxxxxxxxx> Signed-off-by: Michael Haggerty <mhagger@xxxxxxxxxxxx> --- refs.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/refs.c b/refs.c index 7191437..080e277 100644 --- a/refs.c +++ b/refs.c @@ -50,6 +50,9 @@ static const char *parse_ref_line(char *line, unsigned char *sha1) return NULL; line[len] = 0; + if (check_refname_format(line, REFNAME_ALLOW_ONELEVEL)) + return NULL; + return line; } -- 1.7.7 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html