[PATCH] Allow empty lines in info/grafts
From: Yann Dirson <hidden>
Date: 2016-06-15 22:42:23
In addition to the existing comment support, that just allows the user to use a convention that works pretty much everywhere else. Signed-off-by: Yann Dirson <redacted> --- commit.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/commit.c b/commit.c
index 05c4c92..2717dd8 100644
--- a/commit.c
+++ b/commit.c@@ -160,7 +160,7 @@ struct commit_graft *read_graft_line(cha if (buf[len-1] == '\n') buf[--len] = 0; - if (buf[0] == '#') + if (buf[0] == '#' || buf[0] == '\0') return NULL; if ((len + 1) % 41) { bad_graft_data: