diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-16 14:24:56 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-16 14:24:56 -0700 |
commit | 5bc4ce589646faf72c7a77a5d32d9496ccc8d456 (patch) | |
tree | ccd388a1e05223b96675d51d37a1f2db9df5ee94 /commit.c | |
parent | 402461aab17292b78bd36a17bff18e48d544cc9a (diff) | |
download | git-5bc4ce589646faf72c7a77a5d32d9496ccc8d456.tar.gz git-5bc4ce589646faf72c7a77a5d32d9496ccc8d456.tar.xz |
reading $GIT_DIR/info/graft - skip comments correctly.
Noticed by Yann Dirson.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'commit.c')
-rw-r--r-- | commit.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -161,7 +161,7 @@ struct commit_graft *read_graft_line(char *buf, int len) if (buf[len-1] == '\n') buf[--len] = 0; if (buf[0] == '#') - return 0; + return NULL; if ((len + 1) % 41) { bad_graft_data: error("bad graft data: %s", buf); @@ -192,6 +192,8 @@ int read_graft_file(const char *graft_file) /* The format is just "Commit Parent1 Parent2 ...\n" */ int len = strlen(buf); struct commit_graft *graft = read_graft_line(buf, len); + if (!graft) + continue; if (register_commit_graft(graft, 1)) error("duplicate graft data: %s", buf); } |